Search for syntax in string

@Christian_Boggild_Sc Regular expressions are fun! (regex)

Here is a website where you can play with it: http://regexr.com/

\S represents all non whitespace characters, and \s represents a whitespace. You can try to replace \S with \d which represents digits.

5 Likes