RegEx Tester

All Characters[\s\S]*
Any character except newline.
Any word, digit, whitespace character\w \d \s
Any non-word, digit, whitespace character\W \D \S
A single character of: a, b or c[abc]
A character except: a, b or c[^abc]
A character in the range: a-z[a-z]
A character not in the range: a-z[^a-z]
A character in the range: a-z or A-Z[a-zA-Z]
Alternate - match either a or ba|b
Match everything enclosed(?:...)
Capture everything enclosed(...)
Zero or one of aa?
Zero or more of aa*
One or more of aa+
Exactly 3 of aa{3}
3 or more of of aa{3,}
Between 3 and 6 of aa{3,6}
Start of string^
End of string$
Word boundary\b
Non-word boundary\B

Bookmarkable Link:

Bookmarkable Link