Regex Tester

Test regular expressions against sample text with live match highlighting.

0 matches
No matches yet.

Frequently asked questions

Which regex flavor does this use?

JavaScript's native RegExp engine (ECMAScript regex) โ€” the same syntax used in browsers and Node.js. Most patterns are compatible with PCRE, but some advanced features (like recursive patterns) differ.

Why isn't my pattern matching?

Check your flags โ€” forgetting the g flag means only the first match is found and highlighted, and forgetting i means the match is case-sensitive.