Testador de Regex
Digite uma regex, digite o texto de teste — veja todas as correspondências em tempo real.
Biblioteca de padrões
Correspondências — 2 correspondências
[email protected]
test@bad
[email protected]
Explicação
- ^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