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
Get all digits after the decimal point.
PCRE (PHP <7.3)
Simple regex to grab all digits after the decimal point.
Submitted by
anonymous
-
9 years ago
0
Number Processing: Fractions
PCRE (PHP <7.3)
Fraction conversion regex for CS 1671
Submitted by
Alex LaFroscia
-
9 years ago
0
end
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
match dev URL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
get parts of URL
PCRE (PHP <7.3)
split URL in protokoll, domain, file(with path), parameter and anker
Submitted by
Candyman1332
-
9 years ago
0
Delete unwanted Text
PCRE (PHP <7.3)
Matches every Character before the ": " characters
Submitted by
Patrick No
-
9 years ago
0
CSV remove trailing spaces
Python
Remove trailing spaces from CSV files
Submitted by
destegabry
-
9 years ago
0
number or range
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Words with spaces in-between
Python
Matches words (with certain special chars) and one or more spaces in between those words.
Submitted by
JAVA
-
9 years ago
0
Papierloses Büro
PCRE (PHP <7.3)
Dieser regex ist für das Programm DropIt gedacht, damit eingescannte und danach manuell benannte Dokumente automatisch einsortiert werden.
Submitted by
traxxus
-
9 years ago
0
Phone number extract
Python
Used to get the phone number from a list of phone numbers
Submitted by
jmitz
-
9 years ago
0
negative lookahead for files in Sublime Text SFTP package
PCRE (PHP <7.3)
I use this in "ignore_regexes" to only upload css files starting with screen.
Submitted by
localhorst
-
9 years ago
0
simple json key value pair parser
PCRE2 (PHP >=7.3)
no description available
Submitted by
amlang
-
9 years ago
(Last modified 6 months ago)
0
url(../xxx/xxx.jpg)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Remove Dangerous HTML Tags
PCRE (PHP <7.3)
no description available
Submitted by
SG
-
9 years ago
0
German VAT registration number
PCRE (PHP <7.3)
The letters "DE" followed by 9 digits.
Submitted by
anonymous
-
9 years ago
0
Find datetime directory
Python
no description available
Submitted by
anonymous
-
9 years ago
0
Date_Finder
PCRE (PHP <7.3)
Detects Dates in Various text formats
Submitted by
Paul Dennis Bondy
-
9 years ago
0
VML main
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
SELECT to Max lengths
PCRE (PHP <7.3)
no description available
Submitted by
Jordi
-
9 years ago
1
...
45
46
47
48
49
...
900
Community Library Entry
0
Regular Expression
Python
r"
(?P<dd>
\d
{1,2}
)
(?P<sep>
[
\/
.-
]
{1}
)
(?P<mm>
\d
{1,2}
)
(?P=sep)
(?P<yy>
\d
{2,4}
)
"
gi
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago