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,020 community submitted regex patterns...
0
Match everything but not certain characters
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Finding relative filepaths
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Test string contains Instapage URLs
ECMAScript (JavaScript)
Purpose List of Instapage URLs for testing against Todo Add www urls
Submitted by
anonymous
-
6 years ago
0
is absolute url
ECMAScript (JavaScript)
found in https://stackoverflow.com/a/14720951/10715454 check string for absolute url (with domain and such) true example.com...
Submitted by
https://stackoverflow.com/users/114251/arun-p-johny
-
6 years ago
0
release stuff
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
tld
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
UK Postcode
PCRE (PHP <7.3)
Matches the following UK post code formats: A9 9AA A9A 9AA A99 9AA AA9 9AA AA9A 9AA...
Submitted by
anonymous
-
6 years ago
0
UK Postal address
PCRE (PHP <7.3)
Matches single line and mutliline UK postal address as long as they start with a number. For example: 1 Test Street Test Town AA1 1AA ...
Submitted by
anonymous
-
6 years ago
0
hello
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
AutolikesIG PHP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Yes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Yes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
No
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
No
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Yes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Russian endings grabber v3.
PCRE (PHP <7.3)
Removed capital leters. It now works a bit better/ Some russian words have "-" in them, made sure that it does not break grabbed endings
Submitted by
anonymous
-
5 years ago
0
Regex for Nginx Ingress
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: first part of the URL to be maintained Group 2: language (which becomes QS) Group 3: second part of the URL to be maintained...
Submitted by
anonymous
-
6 years ago
0
Yes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: Question mark "?" which needs to be removed...
Submitted by
anonymous
-
6 years ago
0
Regex for Nginx Ingress (Preview API)
PCRE (PHP <7.3)
Request: get a specific segment of URL related to Language and add it as a query string, plus stripping of first 2 segments of the incoming URL: Group 1: language (which becomes QS) Group 2: second part of the URL to be maintained Group 3: empty...
Submitted by
anonymous
-
6 years ago
1
...
174
175
176
177
178
...
901
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(?:
(?<!
\\
)
\\
(?:
(
\\\\
)*
)
(?:
[^
\\
]
|
$
)
)
/
gm
Open regex in editor
Description
This RegEx finds unescaped backslahes
Submitted by
anonymous
-
3 years ago