Pattern Inputs
Match Preview
Contact us: hi@OfflineTools.pro or support@example.com. Invalid one: name@localhost
2 matches
| Index | Value | Groups |
|---|---|---|
| 12 | hi@OfflineTools.pro | - |
| 35 | support@example.com | - |
Pattern Explanation
- `.` matches any character (except newline without `s`).
- `+` means one or more of the previous token.
- `{m,n}` sets explicit repetition ranges.
- `[...]` defines a character class.