Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
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)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 2,160 community submitted regex patterns...
0
Find email address in a string.
Created
·
2014-06-11 17:57
Flavor
·
Python
no description available
Submitted by
anonymous
-1
woop
Created
·
2015-02-15 22:12
Flavor
·
Python
no description available
Submitted by
anonymous
1
Captures entire log line that meet the criteria
Created
·
2014-07-24 14:49
Flavor
·
Python
If you need to grab an entire log line based on criteria (error,warning,notice,info,debug), use this Regexp and change the parameters accordingly.
Submitted by
Neill Lima
1
this
Created
·
2014-07-25 17:32
Flavor
·
Python
stinks
Submitted by
anonymous
1
Double dollar delimited centred LaTeX equation
Created
·
2014-09-18 15:21
Flavor
·
Python
Find all instances of a double dollar delimited centred LaTeX equation, for use with e.g. KaTeX
Submitted by
drewsberry
1
nginx log parser
Created
·
2014-10-15 09:23
Flavor
·
Python
separate nginx log into database table-style fields
Submitted by
wgzhao
1
Brazilian phone numbers
Created
·
2014-11-03 23:21
Flavor
·
Python
no description available
Submitted by
rafaelverger
1
url regex
Created
·
2014-11-18 21:59
Flavor
·
Python
no description available
Submitted by
catwooman
1
domain from full url
Created
·
2015-01-05 09:53
Flavor
·
Python
no description available
Submitted by
anonymous
1
PCI Device
Created
·
2015-03-09 17:26
Flavor
·
Python
no description available
Submitted by
anonymous
1
match the first sentence, ignoring enumerations
Created
·
2015-04-14 13:21
Flavor
·
Python
no description available
Submitted by
Henrik Heimbuerger
1
Get path from URL
Created
·
2015-05-05 11:47
Flavor
·
Python
extract the path from a URL returns one group (if matching) with the path info e.g. http://somedomain.com/some-page/ http://www.domain.com:8080/some-page/ https://www.google.com:8080/some-page/ all return /some-page/
Submitted by
luke_aus
1
MySQLcase
Created
·
2015-05-14 19:50
Flavor
·
Python
make sure mysql tables have the correct form
Submitted by
d
1
phanindra.vaga.ranama
Created
·
2015-05-25 13:29
Flavor
·
Python
sdf
Submitted by
asdf
1
Timecode
Created
·
2015-06-10 01:19
Flavor
·
Python
Regex to match standard timecode format.
Submitted by
Travis
1
Apache Access Log pattern
Created
·
2015-06-19 16:18
Flavor
·
Python
Apache Web server log file format following the standard
Submitted by
Basil Tungekar
1
Email id
Created
·
2015-07-15 17:36
Flavor
·
Python
no description available
Submitted by
anonymous
1
Email Validator
Created
·
2015-08-31 13:46
Flavor
·
Python
Email validator from http://haacked.com/archive/2007/08/21/i-knew-how-to-validate-an-email-address-until-i.aspx/
Submitted by
anonymous
1
exemplo-flex-2
Created
·
2015-09-05 00:58
Flavor
·
Python
no description available
Submitted by
anonymous
1
UK Postcode checker
Created
·
2015-09-24 09:06
Flavor
·
Python
Matches more thoroughly than others in the library. Based on http://stackoverflow.com/questions/164979/uk-postcode-regex-comprehensive. Matches: W1A 1AA, WC2H 7LT, SE50EG
Submitted by
spookypeanut
Previous page
1
…
4
5
6
7
8
…
108
Next page
Community Library Entry
0
Regular Expression
Created
·
2022-12-16 16:02
Flavor
·
ECMAScript (JavaScript)
/
\\
"
|
"
(?:
\\
"
|
[^
"
]
)*
"
|
(
\+
)
/
g
Open regex in editor
Description
See
https://stackoverflow.com/questions/6462578/regex-to-match-all-instances-not-inside-quotes
Submitted by
anonymous