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
Password policy filter Rev 2
ECMAScript (JavaScript)
Password must have 2 Caps, 2 Smalls, 2 Nums and No space
Submitted by
Doug Karl
-
10 years ago
1
Search "smarty" tags
PCRE (PHP <7.3)
Example: Home page | {$site_name|to_small}
Submitted by
Marek Ulwański
-
10 years ago
1
weather
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
iOS Localizable.strings parser
Python
Can be used to find all keys and values in .strings file. Matching pattern: "key" = "value";
Submitted by
Natan Zalkin
-
10 years ago
1
Two Line Element (TLE) validation
PCRE (PHP <7.3)
no description available
Submitted by
Michael Lodge-Paolini
-
10 years ago
1
End of line - SJava
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
10 years ago
1
Find exact domain name match
PCRE (PHP <7.3)
Find exact domain name match in pipe delimeted string
Submitted by
anonymous
-
10 years ago
1
C++ operator overload
PCRE (PHP <7.3)
"Lazy" operator overload regular expression: += and likes are left out because + and like matches anyway.
Submitted by
Guba Dániel Olivér
-
10 years ago
1
Recherche email
PCRE (PHP <7.3)
Recherche un email
Submitted by
G Morelle
-
10 years ago
1
decoupeur de chaines selon les +-
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
10 years ago
1
Mac-address filtering
PCRE (PHP <7.3)
Trying to capture a mac-address structure
Submitted by
R. van den Hoek
-
10 years ago
1
Test BigDecimal formatter
ECMAScript (JavaScript)
no description available
Submitted by
Wally
-
10 years ago
1
ip address @pexipdemo.com
Python
no description available
Submitted by
anonymous
-
10 years ago
1
Safe words and dirty words
PCRE (PHP <7.3)
This regex matches "bob" but does not match "abob", "bobb" or "cbobd" while it does match "cbob" and "bobd". Here "bob" is the dirty word and "abob", "bobb" and "cbobd" are safe phrases
Submitted by
Alex
-
10 years ago
1
Find only ".config" file names
PCRE (PHP <7.3)
Will find lines that end with "/*.config"
Submitted by
Dee
-
10 years ago
1
RGB colors
PCRE (PHP <7.3)
Matches all the RGB colors in the format #RRGGBB and #RGB
Submitted by
Gabriel Hautclocq
-
10 years ago
1
validate_invoiceid_with_yy
PCRE (PHP <7.3)
Validate an ivoice number with the last two digit as last 2 year digit
Submitted by
ema
-
10 years ago
1
{1-65536}
PCRE (PHP <7.3)
12
Submitted by
anonymous
-
10 years ago
1
Non-prod Application Log Regex
PCRE (PHP <7.3)
no description available
Submitted by
Aditya Bindra
-
10 years ago
1
CSV parsing
PCRE (PHP <7.3)
matches the exact fields of CSV files supports: qouted fields quoted fields containing commas, doubble quoutes, and newlines empty fields empty records arbitrary white space in, and outside quoted fields
Submitted by
Austin
-
10 years ago
1
...
606
607
608
609
610
...
902
Community Library Entry
1
Regular Expression
Python
r"
(?P<LongDate>
(?P<Day>
\d
+
)
[
\s
]
+
(?P<Month>
януари
|
февруари
|
март
|
април
|
май
|
юни
|
юли
|
август
|
септември
|
октомври
|
ноември
|
декември
)
[
\s
]
+
(?P<Year>
\d
{4}
)
[
\s
]
(?:
г
.
|
година
)
)
"
giu
Open regex in editor
Description
Parse a bulgarian date following the "dd mmmm yyyy" format.
Submitted by
Tantale
-
10 years ago