Hi Guys,
Just wondering if there is a way to detect and replace in a string any character different than a number or letter? any idea?
Hi Guys,
Just wondering if there is a way to detect and replace in a string any character different than a number or letter? any idea?
Regex.replace(string,“[^\w\d]”,““)
Or
Regex.replace(string,”[^A-Z^a-z^\d]“,””)
thank you very much
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.