How To Remove "Some" Special Characters from String

Try This

System.Text.RegularExpressions.Regex.Replace(YourText,“[^a-z A-Z 0-9 % €]”, “”)

1 Like