Hi,
I'm using Regex_search to find the special characters in a input-box.
Can you please help me which pattern to be used in Regex_search to find special characters in a input-box.
Hi Suresh, you can refer to this thread in the forum:
https://www.outsystems.com/forums/discussion/44810/restrict-multiple-special-characters/
Hi Suresh,
I advice you read more about Regex. There are a lot of content at Internet, for example https://regexone.com/
I like to use some regex online testers, like https://regex101.com/ or https://regexr.com/
Some of them offer help to construct your regex
Here, an example of use:
You can use below pattern in Regex_Search to detact special characters in any text
[!@#$%^&*(),.?"":{}|<>]
Suresh Babu Malayathi wrote:
Please check below link
Thanks,
AV