BytKrates
Regex Playground
Test and visualize your regular expressions
Regular Expression
Flags
Input
Highlighted
0/10000 characters
Matches
0 matches found
No matches found
Quick Reference:
.
- Any character except newline
\d
- Digit (0-9)
\w
- Word character (a-z, A-Z, 0-9, _)
^
- Start of string
$
- End of string
*
- 0 or more occurrences
+
- 1 or more occurrences
?
- 0 or 1 occurrence