Regex-тестер
Введите regex, введите тестовый текст — увидьте все матчи в реальном времени.
Библиотека паттернов
Матчи — 2 матчей
[email protected]
test@bad
[email protected]
Объяснение
- ^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