Test and debug your regular expressions with real-time matching
0
\d
- Any digit\w
- Word character\s
- Whitespace.
- Any character*
- 0 or more+
- 1 or more?
- 0 or 1{n}
- Exactly n^
- Start of line$
- End of line\b
- Word boundary\B
- Not word boundary