Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 12,640 community submitted regex patterns...
1
last URL argument
ECMAScript (JavaScript)
A way to match the last URL argument that allows arguments to contain any characters except '#' and '/'. Assumes that URL argument separator is '/' and that the list starts with '#'. Clearly, not universal!
Submitted by
A. Roberts
-
9 years ago
1
ApiConversion Funktion V2
PCRE (PHP <7.3)
Converts a given API-String into a LuaMockUp
Submitted by
PicassoCT
-
9 years ago
1
ApiDocumentation
PCRE (PHP <7.3)
This Regex takes a Api (the Spring Lua Api in Particular here) And converts it into a LuaMockUp that asserts its arguments by type and returns a valid Value
Submitted by
PicassoCT
-
9 years ago
1
Selectors.io Attribute Selector Implementation
ECMAScript (JavaScript)
no description available
Submitted by
James Donnelly, Selectors.io
-
9 years ago
1
multiline comments
PCRE (PHP <7.3)
Nice to get the multiline comments
Submitted by
ThierryF
-
9 years ago
1
email validation
ECMAScript (JavaScript)
email validation
Submitted by
Guti
-
9 years ago
1
US Telephone Number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
get section
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Match full version
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
grades 0 to 10
PCRE (PHP <7.3)
Validate grades between 0 to 10. With one decimal at max (1.1)
Submitted by
bascoder
-
9 years ago
1
GALLASTEGUI
PCRE (PHP <7.3)
no description available
Submitted by
neosystems
-
9 years ago
1
Time -12 hours format with AM and PM
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
TestCsvProblme
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
TestCsvProblme
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Time - 12 hour format
PCRE (PHP <7.3)
matches time in 12 hour format For Eg: 1a 1A 1p 1P...
Submitted by
Pooja Khorjuvekar
-
9 years ago
1
System names
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
d
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
advfirewall localport
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
advfirewall protocol
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
port range
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
...
469
470
471
472
473
...
632
Community Library Entry
52
Regular Expression
PCRE (PHP <7.3)
/
^
(?'Username'
[
-
\w\d
\.
]
+
?
)
(?:
\s
+
at
\s
+
|
\s
*
@
\s
*
|
\s
*
(?:
[
\[\]
@
]
){3}
\s
*
)
(?'Domain'
[
-
\w\d
\.
]
*
?
)
\s
*
(?:
dot
|
\.
|
(?:
[
\[\]
dot
\.
]
){3,5}
)
\s
*
(?'TLD'
\w
+
)
$
/
gm
Open regex in editor
Description
Matches distorted email addresses and converts them back to real ones.
Submitted by
dislick
-
12 years ago