🧩

regex101

Free
Development Tools

Regex sandbox with live matching, a full explanation tree for every token, a debugger that steps through backtracking, and quick reference for PCRE, JavaScript, Python and Go flavors.

Catalogued January 1, 2026 · Curated by Web Apps Directory team
Online Only
Browser Only
Cross-Platform
Free
Tags
regextestingdebuggerreferencedeveloper-toolsno-account-needed

Why we recommend regex101

regex101 turned regular expressions from write-only incantations into something you can actually understand: paste a pattern and the right-hand panel decomposes every token into plain English, while the debugger steps through the engine's matching and backtracking. The flavor switcher matters more than people realize — a pattern that works in PCRE silently fails in JavaScript, and regex101 makes those differences visible.

Best use cases

Best for: developing a non-trivial regex against real sample text before it goes into code, debugging catastrophic backtracking on patterns that hang in production, learning regex by reading the explanation tree, and sharing a saved pattern URL in code review instead of arguing in comments.

Honest limitations

The debugger only supports the PCRE flavor. Extremely long test strings slow the live matcher. And a green match in the sandbox does not guarantee your host language escapes the pattern the same way — final verification belongs in a unit test.

Are you the maker of regex101? Claim this listing →

More in Development Tools