Answers for "Regex allow spaces but not just spaces"

3

only letters and spaces regex

/^[a-zA-Zs]*$/g
Posted by: Guest on April-12-2021
2

regex ignore spaces

s* ignore spaces
eg s*yourregexs*
Posted by: Guest on April-17-2020

Code answers related to "Regex allow spaces but not just spaces"

Browse Popular Code Answers by Language