Skip to content

Developer Tools

Regex Tester

Build and test JavaScript regular expressions against your own text with live highlighting, a match list and capture groups. Toggle flags like global, ignore-case and multiline.

//g

Contact us at hello@alldaytoolkit.com or support@example.org.

#MatchIndexGroups
1hello@alldaytoolkit.com14
2support@example.org41

Frequently asked questions

Which regex flavor does it use?

It uses the JavaScript (ECMAScript) regular-expression engine — the same one in browsers and Node.js — so results match what your JavaScript code will do.

What do the flags do?

g matches all occurrences, i ignores case, m makes ^ and $ match each line, s lets the dot match newlines, and u enables full Unicode handling.