Tutorial
Tools & Languages
Examples
Reference
Email Address without Consecutive Dots
\b
[
A-Z
0-9
._
%
-
]
+
@
(?:
[
A-Z
0-9
-
]
+
\.
)
+
[A-Z]
{2,4}
\b
Options: case insensitive
Assert position at a word boundary
Match a single character present in the list below
Between one and unlimited times, as many times as possible, giving back as needed (greedy)
A character in the range between "A" and "Z"
A character in the range between "0" and "9"
One of the characters "._"
The character "%"
The character "-"
Match the character "@" literally
Match the regular expression below
Between one and unlimited times, as many times as possible, giving back as needed (greedy)
Match a single character present in the list below
Between one and unlimited times, as many times as possible, giving back as needed (greedy)
A character in the range between "A" and "Z"
A character in the range between "0" and "9"
The character "-"
Match the character "." literally
Match a single character in the range between "A" and "Z"
Between 2 and 4 times, as many times as possible, giving back as needed (greedy)
Assert position at a word boundary
Welcome
Tutorial
Tools and Languages
Examples
Reference
About This Site
Download and Print