Regex-Tester
Geben Sie einen Regex ein, geben Sie Testtext ein — sehen Sie jede Übereinstimmung live.
Musterbibliothek
Übereinstimmungen — 2 Übereinstimmungen
[email protected]
test@bad
[email protected]
Erklärung
- ^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