Does this use JavaScript regular expressions?
Yes, this tool tests regular expressions using the JavaScript RegExp engine.
Developer Tools
Test JavaScript regular expressions against sample text directly in your browser.
Use this tool to validate a regex pattern, inspect matches, review capture groups, and highlight matched text without sending your sample text to a server.
Test JavaScript regular expressions against sample text locally.
// Match details will appear here. // Highlighted matches will appear here. Type a JavaScript regular expression pattern without surrounding slashes.
Enable common flags such as global, ignore case, multiline, or dotAll.
See match counts, positions, capture groups, and highlighted matches.
The example pattern finds email-like strings and shows captured local and domain parts.
Pattern: ([\w.-]+)@([\w.-]+\.\w+)
Text: Contact [email protected] or [email protected]
Flags: g, i Yes, this tool tests regular expressions using the JavaScript RegExp engine.
No, regex testing runs locally in your browser.
Yes, common JavaScript regex flags are supported.