Answers for "regular expression all character and space"

3

only letters and spaces regex

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

regec any character but a space

S  # Note this is a CAPITAL 'S'!
s is anything but a space
[^s] should same thing
Posted by: Guest on April-03-2021

Code answers related to "regular expression all character and space"

Browse Popular Code Answers by Language