Answers for "the efficient way to remove all special characters from a string javascript"

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
0

js remove special characters

var desired = stringToReplace.replace(/[^\w\s]/gi, '')
Posted by: Guest on September-23-2020
1

c# string remove special characters

public static string RemoveSpecialCharacters(this string str) {
   StringBuilder sb = new StringBuilder();
   foreach (char c in str) {
      if ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '.' || c == '_') {
         sb.Append(c);
      }
   }
   return sb.ToString();
}
Posted by: Guest on May-20-2020

Code answers related to "the efficient way to remove all special characters from a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language