Answers for "remove all special characters from string"

4

remove special characters from string javascript

var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
Posted by: Guest on June-06-2020
1

how to remove all special characters from a string in java

String str= "This#string%contains^special*characters&.";   
str = str.replaceAll("[^a-zA-Z0-9]", " ");  
System.out.println(str);  
Posted by: Guest on June-23-2020
0

Remove special characters from string

var outString = sourceString.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi, '');
Posted by: Guest on May-10-2021
0

function to remove special characters in sql

Create function [dbo].[RemoveCharSpecialSymbolValue](@str varchar(500))  
returns varchar(500)  
begin  
declare @startingIndex int  
set @startingIndex=0  
while 1=1  
begin  
set @startingIndex= patindex('%[^0-9.]%',@str)  
if @startingIndex <> 0  
begin  
set @str = replace(@str,substring(@str,@startingIndex,1),'')  
end  
else break;  
end  
return @str  
end
Posted by: Guest on October-02-2020

Code answers related to "remove all special characters from string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language