regex 1 spae and any character code example
Example: regec any character but a space
\S # Note this is a CAPITAL 'S'!
\s is anything but a space
[^\s] should same thing
\S # Note this is a CAPITAL 'S'!
\s is anything but a space
[^\s] should same thing