Tools

Text Tools

Regex Tester

Test JavaScript regular expressions against sample text with match groups and errors.

Output

Test JavaScript regex patterns and inspect matching ranges.

Common edge cases

Invalid patterns throw syntax errors, and global expressions can match multiple ranges.

Language snippets

const matches = [...text.matchAll(/[a-z]+/gi)];

FAQ

Which regex flavor is used?

The MVP uses JavaScript regular expressions.

Related tools