-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
James Brundage
authored and
James Brundage
committed
Sep 22, 2024
1 parent
06c489a
commit 3274d7c
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Matches an Email Address | ||
(?<UserName>\w # Match the username, which starts with a word character | ||
[\w\-\.]{0,} # and can contain any number of word characters, dashes, or dots | ||
)\@ # Followed by an @ | ||
(?<Domain>\w # The domain starts with a word character | ||
[\w\-]{0,} # and can contain any words with dashes, | ||
(?:\. # followed by at least one suffix (which starts with a dot), | ||
\w # followed by a word character, | ||
[\w\-]{0,} # followed by any word characters or dashes | ||
){1,}) | ||
# Matches an Email Address | ||
(?<UserName>\w # Match the username, which starts with a word character | ||
[\w\-\.]{0,} # and can contain any number of word characters, dashes, or dots | ||
)\@ # Followed by an @ | ||
(?<Domain>\w # The domain starts with a word character | ||
[\w\-]{0,} # and can contain any words with dashes, | ||
(?:\. # followed by at least one suffix (which starts with a dot), | ||
\w # followed by a word character, | ||
[\w\-]{0,} # followed by any word characters or dashes | ||
){1,}) |