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
Single dollar delimited LaTeX equation
Python
Find single dollar delimited LaTeX equations, for use with e.g. KateX
Submitted by
drewsberry
-
10 years ago
1
Match date from calendar as string
PCRE (PHP <7.3)
Match date from calendar as string
Submitted by
anonymous
-
10 years ago
-2
1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
18
Email validation
PCRE (PHP <7.3)
no description available
Submitted by
tutsplus.com
-
10 years ago
0
Match all html tags
PCRE (PHP <7.3)
no description available
Submitted by
Kostas Trichas
-
10 years ago
1
Get all HTML tag names
PCRE (PHP <7.3)
no description available
Submitted by
Kostas Trichas
-
10 years ago
1
Parse JSON key value
PCRE (PHP <7.3)
no description available
Submitted by
Kostas Trichas
-
10 years ago
0
Parse JSON key value pair
PCRE (PHP <7.3)
no description available
Submitted by
Kostas Trichas
-
10 years ago
0
url GET parameters
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
t
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
3
Get URL parameters
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
9
Extract url GET parameters
PCRE (PHP <7.3)
Returns key/value pair of a url. Also works with google fonts which has additional information
Submitted by
anonymous
-
10 years ago
1
Extract google fonts key, value, options
PCRE (PHP <7.3)
This regular expression is used to extract google font information from the embeded url
Submitted by
anonymous
-
10 years ago
2
parse images
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
Match all attributes/values of html document
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
7
SO: fail2ban regular to find 403 request in nginx
Python
http://stackoverflow.com/q/25778420/2072035
Submitted by
anonymous
-
10 years ago
(Last modified a year ago)
1
CAS error regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
Find all drives not the primary logical
PCRE (PHP <7.3)
no description available
Submitted by
Cm
-
10 years ago
1
grub options matching
PCRE (PHP <7.3)
Trying to match grub options in capture groups, some of which are known
Submitted by
cnf
-
10 years ago
1
Nth match
PCRE (PHP <7.3)
Matches the nth five digit number
Submitted by
anonymous
-
10 years ago
1
...
877
878
879
880
881
...
900
Community Library Entry
0
Regular Expression
Python
r"
yourtext
(?=
(?:
[^
'
\"
]
*
(?:
'
|
\"
)
[^
'
\"
]
*
(?:
'
|
\"
)
)*
[^
'
\"
]
*
$
)
"
gm
Open regex in editor
Description
It will only pick thet matching text outside the quotes i.e ', "
Submitted by
anonymous
-
4 years ago