\w which matches all word characters (a-z, A-Z, 0-9, and _)
\D which matches all non-digit characters. It is the opposite of \d
\W which matches all non-word characters
\s which matches all white spaces including the spacebar, tab, and return
\w which matches all word characters (a-z, A-Z, 0-9, and _)
\D which matches all non-digit characters. It is the opposite of \d
\W which matches all non-word characters
\s which matches all white spaces including the spacebar, tab, and return