.
- Any character\d
- Digit (0-9)\w
- Word character\s
- Whitespace[abc]
- Character set[^abc]
- Negated set*
- Zero or more+
- One or more?
- Zero or one{n}
- Exactly n{n,m}
- Between n and m{n,}
- n or more^
- Start of string$
- End of string()
- Capture group(?:)
- Non-capture group|
- Alternation\
- Escape character