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
Name title checker
PCRE2 (PHP >=7.3)
For things like Mr. Xyz, or Jr. Abcd.
Submitted by
anonymous
-
3 years ago
0
Missing copyright detector for Visual Studio (.NET)
.NET 7.0 (C#)
Detects one match per file if that file is missing the expected copyright text. This works with Visual Studio IDE. If you are using Rider (PCRE2), you can replace both \b entries with \Q then \E
Submitted by
Kris Morness
-
3 years ago
0
Missing copyright detector for Rider (PCRE2)
PCRE2 (PHP >=7.3)
Detects one match per file if that file is missing the expected copyright text. This works with JetBrains Rider IDE. If you are using Visual Studio (.NET), you can replace the \Q and \E with \b
Submitted by
Kris Morness
-
3 years ago
0
匹配 gcc warning 的正则
Python
匹配 gcc warning 的正则 来源:https://github.com/jenkinsci/analysis-model/blob/90c48163a3bf7aef4ebee357dfd1a443e3387bbe/src/main/java/edu/hm/hafner/analysis/parser/GccParser.java#L25
Submitted by
anonymous
-
3 years ago
0
Match all periods except the file extension
PCRE2 (PHP >=7.3)
Match all periods except the file extension
Submitted by
anonymous
-
3 years ago
0
Golang Docker matcher
Golang
Used by me for docker-retagger
Submitted by
Roman Minebaev
-
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
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
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
Before a word
PCRE2 (PHP >=7.3)
Gets strings before or after a word
Submitted by
SuperMAC
-
3 years ago
0
imperva_regex
PCRE2 (PHP >=7.3)
A regex exercise for Imperva
Submitted by
Lesley Miller
-
3 years ago
0
E-mail
.NET 7.0 (C#)
My first simple e-mail validator regex :)
Submitted by
anonymous
-
3 years ago
0
Código Postal + Localidade Portugal
PCRE2 (PHP >=7.3)
Format: (dddd-ddd)(.*)
Submitted by
Jonathan Vicente
-
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
youtube-links
PCRE2 (PHP >=7.3)
Regexing all the elements of the youtube playlist
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
JOOMLA_KEY
PCRE2 (PHP >=7.3)
Identifies Joomla! Language Keys
Submitted by
anonymous
-
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
Username Middle name Surname regex matcher
Java 8
Username Middle name Surname regex matcher
Submitted by
Nikola
-
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
1
...
490
491
492
493
494
...
900
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
\b
(
support
post-livraison
|
support
post
livraison
|
support
client
post
livraison
|
support
client
post-livraison
|
post-livraison
|
post
livraison
|
support
client
|
support
post
|
client
post-livraison
|
client
post
livraison
|
support
|
livraison
)
\b
/
gm
Open regex in editor
Description
Detect support post-livraison
Submitted by
anonymous
-
2 years ago