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 14,240 community submitted regex patterns...
1
reddit test match
PCRE (PHP <7.3)
just a test match
Submitted by
anonymous
-
9 years ago
1
java
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
noted xanbot
PCRE (PHP <7.3)
no description available
Submitted by
NotedBinkie
-
9 years ago
1
Site FR
PCRE (PHP <7.3)
Site FR, pour trouver la version correcte.
Submitted by
EA
-
9 years ago
1
Site (Régis)
PCRE (PHP <7.3)
Site Régis
Submitted by
EA
-
9 years ago
1
Numéros téléphone corrects (anglais)
PCRE (PHP <7.3)
Numéros de téléphone avec ou sans parenthèses en anglais
Submitted by
EA
-
9 years ago
1
Numéros téléphone pas corrects (FR)
PCRE (PHP <7.3)
Numéros téléphone pas corrects (FR)
Submitted by
EA
-
9 years ago
1
UK Companies Registration Number
PCRE (PHP <7.3)
Checks that the number and optional prefix submitted are in a valid UK Companies House format.
Submitted by
Steve Haworth
-
9 years ago
1
Ordinal
Python
Matches ordinal numbers
Submitted by
D
-
9 years ago
1
URL parser RegEx
PCRE (PHP <7.3)
Parse full URL and find parts
Submitted by
Dakr Coder
-
9 years ago
1
TLD Scratch tapes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
turkish translations
PCRE (PHP <7.3)
regex to allow unicode chars & digits in config values
Submitted by
scopevale
-
9 years ago
1
ip (CIDR) check
PCRE (PHP <7.3)
from 0.0.0.0 to 255.255.255.255
Submitted by
Marcel Bayer
-
9 years ago
1
Email Id Validity Checker
PCRE (PHP <7.3)
Checks whether given text is valid Email Id,check for top level domains which are 2-3 in length,does not accept numbers for top level domains
Submitted by
Debanjan Das
-
9 years ago
1
Cookie Value Finder By name
PCRE (PHP <7.3)
When using javascript to get a cookie value by its name, Get the cookie string by document.cookie Use this pattern to get the proper value. Just replace the cookie name in my pattern. Use 1st or 2nd group(this is only used when your cookie name is last in the string)
Submitted by
khpatel4991
-
9 years ago
1
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
testing
PCRE (PHP <7.3)
testing
Submitted by
Zeddy
-
9 years ago
1
any tag
PCRE (PHP <7.3)
regex used to search for any tag (both html and xml)
Submitted by
dasmi
-
9 years ago
1
works
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Aux Copy Create
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
...
74
75
76
77
78
...
712
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(?<!
\s
)
(
\s
)
(?:
\S
+
?
)
(?:
\r\n
?
|
\n
|
\z
)
/
g
Open regex in editor
Description
Looks for the last single space in a line of text.
Submitted by
anonymous
-
7 years ago