Regular Expression
Short hand character set
\d [0-9] digit \w [a-zA-Z0-9_] word \s [ \t\r\n] whitespace \D [^0-9] not digit \W [^a-zA-Z0-9_] not word \S [^ \t\r\n] not whitespace
\d [0-9] digit \w [a-zA-Z0-9_] word \s [ \t\r\n] whitespace \D [^0-9] not digit \W [^a-zA-Z0-9_] not word \S [^ \t\r\n] not whitespace