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
Duplicate Properties
PCRE (PHP <7.3)
This regex is to find duplicates in properties- or config-files with '='-separated key value pairs.
Submitted by
vgross
-
9 years ago
1
my first regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Decimal numbers (plus exponent)
PCRE (PHP <7.3)
Matches decimal numbers also with exponent (23.8e12) It does not match silly things like 00000000000.0000000000 as other "decimal number regex"
Submitted by
Mirco Sanguineti
-
9 years ago
1
Improved decimal numbers
PCRE (PHP <7.3)
Decimal numbers matcher with optional matching for exponent (12.4e7) and optional thousand comma separator matches both 1,234.05 and 1234.05. Also matches negative numbers (-1234.05)
Submitted by
Mirco Sanguineti
-
9 years ago
1
DDmmyyyy
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Turkish Date (4 digit year) Regex (with leap year control)
PCRE (PHP <7.3)
Following inputs are accepted dd.mm.yyyy while 29.02.2016 accepted, 29.02.2017 is not. also some months last days should be 30, not 31 ...
Submitted by
Abdulhamit Mabocoglu
-
9 years ago
1
ls -a Linux Output - Parse Filename
PCRE (PHP <7.3)
Parse just the filename from ls -a output on Linux.
Submitted by
Brian Hannan
-
9 years ago
1
Bloomberg Futures
PCRE (PHP <7.3)
Separates generic and individual bloomberg symbols into 'root', 'month' (or lack of it), 'year' or 'generic contract number' and 'yellow key' Problem is that matches for root are 1 and 4, can't give them save reference or number. Will update if figure out
Submitted by
@TradingMax
-
9 years ago
1
username
PCRE (PHP <7.3)
REGEX to validate field username 3-20 chars
Submitted by
Fernando Migliorini TenĂ³rio
-
9 years ago
1
Find all ASINs in a text
PCRE (PHP <7.3)
ASIN = Amazon Standard Identification Number
Submitted by
NN
-
9 years ago
1
File Extension
Python
Grabs the last "." of a string, and any word characters (\w) that follow.
Submitted by
G
-
9 years ago
1
;'
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Detect blank space
PCRE (PHP <7.3)
If regex = true the string contain blank space !
Submitted by
anonymous
-
9 years ago
1
Remove spaces between brackets
ECMAScript (JavaScript)
Removes space after opening and before closing square and reqular brackets/parenthesis and keeps what's inside
Submitted by
anonymous
-
9 years ago
1
List of phone numbers
ECMAScript (JavaScript)
List of phone numbers separated by commas 241 214 2414,(214) 224 4244, 214/224 4224,2142244244
Submitted by
anonymous
-
9 years ago
1
Date of Birth
PCRE (PHP <7.3)
no description available
Submitted by
Marcos André
-
9 years ago
1
link
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
URL Matcher
Python
no description available
Submitted by
anonymous
-
9 years ago
1
t01
Python
t01
Submitted by
anonymous
-
9 years ago
1
LiveRes
PCRE (PHP <7.3)
Postcode Validation
Submitted by
Dan Manning
-
9 years ago
1
...
223
224
225
226
227
...
902
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
\b\d
{1,3}
\.
\d
{1,3}
\.
\d
{1,3}
\.
\d
{1,3}
\b
/
gmi
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago