Answers for "remove special chars regex"

C#
2

regex replace all special characters

Regex.Replace(your String, @"[^0-9a-zA-Z]+", "")
Posted by: Guest on March-25-2020
0

Remove special characters from string

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

Code answers related to "remove special chars regex"

C# Answers by Framework

Browse Popular Code Answers by Language