Answers for "regex for string containing space"

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
-1

regular expression search for any character until Space

/^[a-zA-Z-]*/
									Creator:Zenonymous
Posted by: Guest on December-07-2020

Code answers related to "regex for string containing space"

Browse Popular Code Answers by Language