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...
-3
Match substitutions
Created
·
2014-07-26 13:32
Flavor
·
Python
Match regular expressions substitutions, I personally use this to perform my validate if it is a substitution, then call re.sub() on it.
Submitted by
Zarthus
-3
Matches percentage with any number of digits
Created
·
2015-06-10 19:26
Flavor
·
Python
Only captures value for converting percentage to decimal. Returns empty if percentage but no value. no match = no percentage found
Submitted by
sharkey
-3
TD data from html table
Created
·
2015-12-24 10:15
Flavor
·
Python
no description available
Submitted by
Deepak Bansal
-3
IPv4 address
Created
·
2016-04-06 17:12
Flavor
·
Python
Matches any IPv4 address
Submitted by
anonymous
-2
example
Created
·
2014-07-28 21:44
Flavor
·
Python
match
Submitted by
anonymous
-2
Basic grammar for regex matching of simplistic Makefiles
Created
·
2014-08-13 01:11
Flavor
·
Python
This expression should both normal and wildcard targets and rules wrapped in simple sub-shell or varriable substitution enclosures.
Submitted by
Robert Butler <me@r-butler.net>
-2
eee
Created
·
2014-09-24 14:21
Flavor
·
Python
no description available
Submitted by
anonymous
-2
link
Created
·
2014-10-06 11:34
Flavor
·
Python
no description available
Submitted by
NTP-[SADAS]
-2
five word capture
Created
·
2014-11-28 04:40
Flavor
·
Python
no description available
Submitted by
anonymous
-2
match only words consisting of 3 repeated letters, e.g. lllkkk
Created
·
2014-12-21 19:38
Flavor
·
Python
no description available
Submitted by
kali
-2
python bracketed text
Created
·
2015-01-27 21:53
Flavor
·
Python
why doesn't this match text in brackets?
Submitted by
anonymous
-2
Host and domains
Created
·
2015-06-10 18:44
Flavor
·
Python
no description available
Submitted by
anonymous
-2
IPv4
Created
·
2015-06-19 13:07
Flavor
·
Python
allows for all legal IPv4 addresses
Submitted by
anonymous
-2
twitter usernames
Created
·
2015-07-10 11:15
Flavor
·
Python
no description available
Submitted by
anonymous
-2
finds the instance of two or more repeating letters
Created
·
2015-07-10 19:34
Flavor
·
Python
no description available
Submitted by
cp0153
-2
checklists item
Created
·
2015-07-15 13:25
Flavor
·
Python
checklists item
Submitted by
Tobias Hochgürtel
-2
filter
Created
·
2015-07-18 07:55
Flavor
·
Python
no description available
Submitted by
anonymous
-2
Validation of code ATECO Italian
Created
·
2015-08-19 12:09
Flavor
·
Python
/* -- This is a RegEx for validating one Italian ATECO code. -- For original specification visit: http://www.istat.it/it/archivio/17888 -- Valid: */ 1 01 01.2 01.02 01.02.3 01.02.03 // Not Valid: a asc 0123 012.3 013.456 123456 01/02/03
Submitted by
Marco Tonchella with the help of this Comunity that thanks a lot.
-2
Prosed OFX DateTimeType pattern for v.2.1.1+
Created
·
2015-09-06 02:10
Flavor
·
Python
no description available
Submitted by
Oleg Sakharov karpuscul@gmail.com
-2
match commas between sets or members, but not inside members.
Created
·
2015-10-23 16:41
Flavor
·
Python
matches only those commas that are between sets, or between members of a set. does not match commas that are inside members.
Submitted by
Amrit Kohli
Previous page
1
2
3
…
108
Next page
Community Library Entry
1
Regular Expression
Created
·
2021-06-25 20:43
Updated
·
2022-01-13 16:10
Flavor
·
ECMAScript (JavaScript)
/
(
[
\w\d
]
{1,}
)(
\s
{0,}
-
\s
{0,}
)(
[
\w\d
]
{1,}
)(
\s
{1,}
|
(
\s
{0,}
-
\s
{0,}
)
)(
[
\w\d
]
{1,}
)
/
gi
Open regex in editor
Description
Matches the comment string from Robo3T exports
Submitted by
anonymous