Test, debug, and validate your regular expressions in real-time
g
(Global) - Find all matches rather than stopping after the first matchi
(Case Insensitive) - Make the regex case insensitivem
(Multiline) - ^ and $ match start/end of each lines
(Dot All) - Dot matches newline characters[A-Za-z0-9]
- Match any alphanumeric character\d
- Match any digit (0-9)\w
- Match any word character (a-z, A-Z, 0-9, _)\s
- Match any whitespace character^
- Match start of line$
- Match end of line