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...
0
INSEE code for french municipalities
ECMAScript (JavaScript)
This is a regex that allows you to match INSEE codes for a french municipality. It is different from a french postal code, because it can have "A" or "B" in its second character, used in codes for cities located in Corse. Example: 2A004 for Ajaccio. ...
Submitted by
thomasdom
-
3 years ago
(Last modified 3 years ago)
0
basic gitlab rule for job to not be runned automaticaly for specific branch
PCRE (PHP <7.3)
rules: if: '$CI_COMMIT_BRANCH !~ /^release|hotfix|$CI_DEFAULT_BRANCH\/.*$/' when: manual allow_failure: true when: always `
Submitted by
Kramtoske
-
3 years ago
1
solidity version detections
PCRE (PHP <7.3)
Given example text in 0.6.12+commit.27d51765. Now we need to extract the version number from the text.
Submitted by
jjhesk
-
3 years ago
0
INI values
PCRE2 (PHP >=7.3)
not done yet
Submitted by
anonymous
-
3 years ago
0
IPV4 Grabber
PCRE2 (PHP >=7.3)
This expression grabs any IPV4 address from any text, any time, anywhere. Hopefully.
Submitted by
Ricardo Chica
-
3 years ago
(Last modified 3 years ago)
0
Bible Quote Regex
PCRE2 (PHP >=7.3)
Regex that matches any bible quote that is more specific than a singular book.
Submitted by
anonymous
-
3 years ago
0
Username Middle name Surname regex matcher
Java 8
Username Middle name Surname regex matcher
Submitted by
Nikola
-
3 years ago
0
snake case
PCRE2 (PHP >=7.3)
What is snake case? Snake case is a naming convention in which a developer replaces spaces between words with an underscore. Snake case examples Here are three simple examples of code in the snake case naming convention: increase_count_by_one materials_procurement...
Submitted by
Moonshadow2333
-
3 years ago
(Last modified 3 years ago)
0
JOOMLA_KEY
PCRE2 (PHP >=7.3)
Identifies Joomla! Language Keys
Submitted by
anonymous
-
3 years ago
0
ecoDMS-REGEX
PCRE2 (PHP >=7.3)
Search Date for AT https://regex101.com/r/Ms68ks/1
Submitted by
TORAMBO.com
-
3 years ago
0
Código Postal + Localidade Portugal
PCRE2 (PHP >=7.3)
Format: (dddd-ddd)(.*)
Submitted by
Jonathan Vicente
-
3 years ago
0
youtube-links
PCRE2 (PHP >=7.3)
Regexing all the elements of the youtube playlist
Submitted by
anonymous
-
3 years ago
0
European VAT Numbers
PCRE2 (PHP >=7.3)
EU Vat Number formats
Submitted by
Jonathan Vicente
-
3 years ago
(Last modified 3 years ago)
0
E-mail
.NET 7.0 (C#)
My first simple e-mail validator regex :)
Submitted by
anonymous
-
3 years ago
0
imperva_regex
PCRE2 (PHP >=7.3)
A regex exercise for Imperva
Submitted by
Lesley Miller
-
3 years ago
0
Before a word
PCRE2 (PHP >=7.3)
Gets strings before or after a word
Submitted by
SuperMAC
-
3 years ago
0
Improved HTS matcher
PCRE2 (PHP >=7.3)
For all customs related HTS stuff, you can now put the CBP document you need here and just grab all those tasty, tasty HTS numbers with this handy formula. Cheers!
Submitted by
anonymous
-
3 years ago
0
Get any Tariff number used in the HTS for Customs
PCRE2 (PHP >=7.3)
Tariff number format grabber for any customs related stuff
Submitted by
anonymous
-
3 years ago
0
Architectural CSI (Construction specifications institute)
ECMAScript (JavaScript)
CSI is a documentation standard for Architectural buildings and specifications in construciton. Tihs matches the code based on the typical patterns in ues and returns the Number and the description if it iexists. May need retooling for Autodesk Model checker.
Submitted by
Ron Allen 2022
-
3 years ago
0
Golang Docker matcher
Golang
Used by me for docker-retagger
Submitted by
Roman Minebaev
-
3 years ago
1
...
143
144
145
146
147
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
[^
\|
]
{1,20}
)
\|
(
[^
\|
]
{3,50}
)
\|
(
(
[
\d
]
{4}
){4}
)
\|
(
(
0
[
1
-
9
]
|
1
[
0
-
2
]
)
(
0
[
1
-
9
]
|
[
1
-
9
]
[
0
-
9
]
)
)
$
/
Open regex in editor
Description
no description available
Submitted by
2M
-
9 years ago