Regex - clean string from unwanted characters

Check this:
Replace:

System.Text.RegularExpressions.Regex.Replace(your_String,"[^[\p{L}|\p{N}|\s]","")

image

1 Like