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 18,040 community submitted regex patterns...
1
SVC Branch Naming
PCRE (PHP <7.3)
Branch naming regex that's suitable for Gitlab issues. GIT SVN MERCURIAL MG
Submitted by
anonymous
-
7 years ago
0
Get data from string
PCRE (PHP <7.3)
\"?()\"? \"?()\"? (\d{2}) (\d{5}).(\d{2}) (\d{3}-\d{7}) string: "Mattias Asplund" 46 35000.00 070-6186120
Submitted by
Americo
-
7 years ago
0
Plex Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
discard rubbish, GEO, NUMBERS, NAME, TYPE
Python
This is useful for parsing Australian street addresses. It discards initial rubbish, then extracts: BND or CNR, which is useful for geolocating by boundaries Numbers. If you use the regex Python library, you could get a list of numbers preceding a street name Name, e.g. Bourke...
Submitted by
Daniel Vianna
-
7 years ago
0
Dad jokes
PCRE (PHP <7.3)
Get whatever comes after user says I'm (any spelling errors included). Meant to be used with a bot which replies "Hello . I'm Dad!"
Submitted by
anonymous
-
7 years ago
0
catch_physicalinterface_huawei_cisco
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Splitting TPT Data Package
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
MBUSA
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
RegEx Extract Domain & Subdomain - With Verified TLDs
PCRE (PHP <7.3)
Matching group 1**: Fully qualified domain name including subdomain and top level domain. Does not match**: Incorrectly formatted names including use of Space, Tab, Unwise, Reserved and Delim characters Does not match**: Non Registered TLDs as of 2017-10-06 Returns**: Full domain string including su...
Submitted by
http://xoocode.com
-
7 years ago
0
Event ID: 4616
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Event ID: 4608
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Event ID: 1107
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Event ID: 1101
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Event ID:1100
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Dates
Python
no description available
Submitted by
anonymous
-
7 years ago
0
only numbers csv
ECMAScript (JavaScript)
regex to match an only numbers csv
Submitted by
anonymous
-
7 years ago
0
Beschleunigung
Python
Regex für das Parsing von allen Beschleunigungen (Längst- und Quer-)
Submitted by
Eugen
-
7 years ago
0
Regex for span content
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
catch_softwareversion_model_huawei_cisco
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Test a string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
565
566
567
568
569
...
902
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
2 years ago