EverEadyToolsPro
Finance

Advanced Regex Tester

Build and test your regular expressions with deep pattern explanation and match analysis.

Regular Expression

/

/

Test String
0 Matches
Contact us at support@example.com or feedback.user123@domain.org for help!
Match Details

Matches will appear here...

Regex Explanation
[a-zA-Z0-9._%+-]

Character Class

Matches any character in the set: a-zA-Z0-9._%+-

+

Quantifier

Matches 1 or more times.

@

Literal

Matches the literal character "@"

[a-zA-Z0-9.-]

Character Class

Matches any character in the set: a-zA-Z0-9.-

+

Quantifier

Matches 1 or more times.

\.

Escaped Character

Matches exactly "." (escaped)

[a-zA-Z]

Character Class

Matches any character in the set: a-zA-Z

{2,}

Quantifier

Matches {2,} times.


Flags Info

g: Global Search (don't return after first match)