Regex Tester & Cheatsheet
Regex Cheatsheet
\d = digit
\w = word character
\s = whitespace
. = any character
^ = start of line
$ = end of line
[abc] = match a, b, or c
( ) = group
+ = one or more
* = zero or more
\d = digit
\w = word character
\s = whitespace
. = any character
^ = start of line
$ = end of line
[abc] = match a, b, or c
( ) = group
+ = one or more
* = zero or more