Answers for "validation: no spaces | only alphanumeric characters"

1

how to get only alphanumeric and whitespace in string regex

/[A-Za-zds]/g
Posted by: Guest on March-06-2021
0

search for field containing ONLY non-alphanumeric characters

WHERE whatever NOT LIKE '%[a-z0-9]%'
Posted by: Guest on August-07-2021

Code answers related to "validation: no spaces | only alphanumeric characters"

Browse Popular Code Answers by Language