Regex tester
Type a regex, type test text — see every match live.
Pattern library
Matches — 2 matches
[email protected]
test@bad
[email protected]
Explanation
- ^start of string / line
- [^\s@]character class
- +one or more of the previous
- @literal "@"
- [^\s@]character class
- +one or more of the previous
- \.literal dot
- [^\s@]character class
- {2,}quantifier
- $end of string / line