Regex Tester

Test and debug regular expressions with live match highlighting and capture group details.

//
Matches (2)
Match 1Index: 14
"support@utilityone.in"
Group 1: "support"
Group 2: "utilityone.in"
Match 2Index: 39
"admin@example.com"
Group 1: "admin"
Group 2: "example.com"

About Regular Expressions

Regular expressions (regex) are powerful patterns used to match, search, and manipulate text. They are supported in virtually every programming language and text editor. Common use cases include form validation, log parsing, data extraction, and search-and-replace operations.

This tester runs your regex against a test string in real time, showing all matches, their positions, and captured groups. All processing happens in your browser using JavaScript's native RegExp engine.

Frequently Asked Questions

What regex flags are supported?

Global (g), case-insensitive (i), multiline (m), and dotAll (s) flags are supported. Toggle them individually or combine as needed.

Does it show capture groups?

Yes. Each match displays its full match text, position index, and any named or numbered capture groups with their values.

Related Tools

View All Tools