1-Byte Developer Tools / Regex
Regex Builder & Tester
Build and test regular expressions with instant feedback, match highlighting and captured groups. The free plan is tuned for everyday strings; premium lifts limits and adds richer diagnostics for heavier logs and trickier patterns.
We will highlight each match in the subject and list captured groups on the right.
Quick tips
- Use
^and$to anchor your pattern to the start or end of the line or string. - Wrap parts in brackets
( )to create capturing groups – we will show them per match. - Prefer explicit quantifiers like
{2,5}over endless.*where you can.
Free mode: subject text is best kept under ~8k characters. Premium will raise this so you can work against full log lines and larger files.
Subject with matches highlighted
Each match is wrapped in a coloured pill so you can see where the pattern is actually firing.
Matches & captured groups
We list each match with its index and any capturing groups. Use this to confirm your pattern is catching exactly what you think it is.
Pattern summary
When you run a pattern, we will echo it here with its flags and some basic hints about anchors and potential pitfalls.
Free mode: roughly the first 8k characters of the subject are used, and we cap matches to keep things responsive. Premium raises these limits and surfaces more group detail per match.