I want to filter out a phone number from my app, my only issue is when im using the "contains" block it can be bypassed by adding a space or a period because of how phone numbers can be formated, is there a way to for example make "contains" ignore spaces, periods, brackets, dashes ect.
Remove those characters from the supplied phone number string - use the replace all text
block
or use a regex extension to remove such characters
Using regex:
The \D+
returns all the numbers, and ignores all other characters.
where do i get regex?
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.