\d = any numeric digit between 0 and 9.
\D = anything that is not a numeric digit between 0 and 9.
\w = any letter, numeric digit, or underscore character.
\W = any character that is not a numeric digit, letter, or underscore character.
\s = any space, tab, or newline character.
\S = any character that is not a space, tab, or newline character.