Enter regex pattern and test string. Matches highlighted real-time. Flags (g/i/m). Groups shown.
Visual feedback for regex debugging. Build patterns faster than code trial-and-error.
JavaScript regex engine; supports lookaheads, lookbehinds, named groups, Unicode.
Yes, numbered and named.
g (global), i (case-insensitive), m (multiline).
Copy pattern and test string.
Test and debug regular expressions in real time with the Toolzie Regex Tester. Enter your pattern and test string to see all matches highlighted instantly — with support for flags, groups, and common regex flavours.
JavaScript's built-in RegExp engine, which is compatible with most web and general-purpose regex patterns.
Add the g (global) flag to find all matches instead of just the first.
Add the i flag to ignore upper/lower case differences.
A group defined with parentheses (e.g. (\d+)) captures matched text separately, making it accessible via match groups.