Skip to main content
Back to all tools

Regex Tester

Test regular expressions with live match highlighting and multi-language code snippets.

//g

Flags

Common Patterns

Code Snippet

javascript
const regex = /pattern/g;
const match = regex.exec(str);
const allMatches = [...str.matchAll(regex)];
const result = str.replace(regex, replacement);