Answers for "regular expression search for any character until 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 "regular expression search for any character until Space"

Code answers related to "Javascript"

Browse Popular Code Answers by Language