Skip to content

Regex Tester

Test regular expressions with real-time matching, highlighting, and group extraction.

Flags:

What is Regex Tester?

Regex Tester is a free online tool for testing regular expressions with real-time match highlighting. No installation required.

How to test regular expressions?

  1. Enter your regular expression in the pattern field
  2. Paste your test text in the input area
  3. Select flags: g (global), m (multiline), i (case-insensitive)
  4. Matches are highlighted in real-time as you type

Regex flags explained

The g (global) flag finds all matches. The m (multiline) flag makes ^ and $ match line starts/ends. The i (case-insensitive) flag ignores letter case.