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,000 community submitted regex patterns...
1
Match statistical geographies (UK)
PCRE (PHP <7.3)
Mach standard statistical geography identifiers for UK.
Submitted by
Konrad
-
9 years ago
1
Project
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Currency Detector Python
Python
Currency Detector for Python
Submitted by
Joao Graca
-
9 years ago
1
Url regex that capture the domain of the URLs
ECMAScript (JavaScript)
https://developer.mozilla.org/es/docs/Web/JavaScript https://www.google.es/webhp?hl=es Matches: MATCH 1...
Submitted by
D<OS>
-
9 years ago
1
Url regex that capture the domain of the URL
ECMAScript (JavaScript)
https://developer.mozilla.org/es/ Url regex that capture the domain of the URL
Submitted by
anonymous
-
9 years ago
1
Alpha + Underscore
ECMAScript (JavaScript)
no description available
Submitted by
Sergio de la Garza
-
9 years ago
2
Simple domain.tld tester
ECMAScript (JavaScript)
For testing domain with TLD regExp.test("google.com") => true regExp.test("mad.engineering") => true
Submitted by
Sergio de la Garza
-
9 years ago
1
Check Date + time (DD/MM/YYYY HH:MM)
ECMAScript (JavaScript)
no description available
Submitted by
Mikael Georges
-
9 years ago
1
Drupal translations
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
9
only numbers
PCRE (PHP <7.3)
A string with only numbers in
Submitted by
Gotts
-
9 years ago
1
WordPress Multipage Table of Contents header reconition
PCRE (PHP <7.3)
Finds h1-h3, its id if have one and the title.
Submitted by
Morning train
-
9 years ago
1
Match IP Address in PHP
PCRE (PHP <7.3)
Match IP Address in PHP
Submitted by
anonymous
-
9 years ago
1
cidr
PCRE (PHP <7.3)
spf cidr
Submitted by
a
-
9 years ago
1
Data en format dd/mm/aaaa
PCRE (PHP <7.3)
no description available
Submitted by
gcq
-
9 years ago
1
Duration String (dhm)
ECMAScript (JavaScript)
Duration string in dhm format. Supported Values 20d 8h 30m 20d 8h 30m...
Submitted by
nehakadam
-
9 years ago
1
Threema ID
PCRE (PHP <7.3)
Matches for normal Threema IDs and Gateway Threema IDs
Submitted by
rugk
-
9 years ago
2
Date search
PCRE (PHP <7.3)
Search for three different types of dates in spanish format
Submitted by
AgustÃn Bouillet
-
9 years ago
1
Find all JS objects with the name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
13fd
PCRE (PHP <7.3)
no description available
Submitted by
jay
-
9 years ago
1
url regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
769
770
771
772
773
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
\b
(?:
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
1
?
[
1
-
9
]
[
0
-
9
]
?
|
10
[
0
-
9
]
)
(?:
(?<!
\.
)
\b
|
\.
)
)
(?:
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
[
0
-
9
]
|
[
01
]
?
[
0
-
9
]
[
0
-
9
]
?
)
(?:
(?<!
\.
)
\b
|
\.
)
){3}
/
g
Open regex in editor
Description
Match on VALID IP address anywhere in string.
Submitted by
KyleV
-
7 years ago