What regex flavour does this use?
The Regex Tester uses the browser's native JavaScript RegExp engine. This means it supports all standard ES2024 features including named capture groups, lookbehind assertions, and the /v (Unicode sets) flag.
Live regex testing with match highlighting, capture groups, and flag controls.
The ByteKiln Regex Tester runs your pattern against the test string using the browser's native JavaScript RegExp engine. Results update live as you type.
Every match is highlighted in the preview panel. Non-matching text is shown in muted colour so the matched regions stand out at a glance.
Each result card shows the full match, its index position in the string, and the value of each capture group. Named groups ((?<name>…)) are shown with their label.
The toolbar includes ready-made patterns for email addresses, URLs, IPv4 addresses, ISO dates, and hex colours — click any to load it immediately.
Short answers for the things developers usually ask before trusting a tool.
The Regex Tester uses the browser's native JavaScript RegExp engine. This means it supports all standard ES2024 features including named capture groups, lookbehind assertions, and the /v (Unicode sets) flag.
The flags control how matching works: g (global) finds all matches instead of just the first, i (case-insensitive) ignores letter case, m (multiline) makes ^ and $ match line boundaries, s (dotAll) makes . match newlines, and u enables full Unicode mode.
Each match card in the results panel shows numbered capture groups (Group 1, Group 2…) and named groups in quotes. Named groups use the (?<name>…) syntax.
No. Regex testing runs entirely in the browser using JavaScript's native RegExp API. Nothing is sent to any server.
The most common cause is a missing g flag — without it, only the first match is found. Also check that backslashes are properly escaped: in the pattern field, \d means a digit, but if you type literally \d you may need to check the input. The error message beneath the pattern field pinpoints invalid syntax.
Useful follow-ups when one conversion usually turns into three more.
Format, validate, and minify JSON instantly with a browser-first editor.
Encode special characters for URLs or decode percent-encoded strings safely.
Format and validate YAML, or convert between YAML and JSON. Essential for Kubernetes, Docker, and CI configs.