regec any character but a space code example
Example 1: regec any character but a space
\S # Note this is a CAPITAL 'S'!
\s is anything but a space
[^\s] should same thing
Example 2: regular expression search for any character until Space
/^[a-zA-Z-]*/
Creator:Zenonymous