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 11,320 community submitted regex patterns...
1
dropping first digit (2) andy advice?
PCRE (PHP <7.3)
\_\d(.+) for _2015041122
Submitted by
jbt
-
10 years ago
0
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
Parsing the response of an oauth provider for token and session
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
year match
PCRE (PHP <7.3)
2010-2012
Submitted by
tazbir
-
10 years ago
1
decimal or not number
PCRE (PHP <7.3)
acepts 1.000 and 1000
Submitted by
jvs
-
10 years ago
1
Repeating Group
PCRE (PHP <7.3)
There are 2 segments within this data that start with REF* and end with a tilde (~). I can capture one of them but not both. I've read and cant seem to figure this one out. I DO need to preface with the NM1*03 piece.
Submitted by
Chris.
-
10 years ago
1
regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
yous
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
Adyen reason when AUTHORISATION success
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
11
remove comments from php code
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
russian phone number hard validation (multiformat)
PCRE (PHP <7.3)
Supported formats (mobile): +7(xxx)xxx xxxx +7(xxx)xxxxxxx +7(xxx)xxx-xx-xx +7(xxx)xxx xx xx +7 xxx xxx xx xx...
Submitted by
Redfern.89
-
10 years ago
1
Проверка валидности номера телефона в разных форматов в +7
PCRE (PHP <7.3)
no description available
Submitted by
redfern.89
-
10 years ago
1
StackOverflow 30430783
Python
no description available
Submitted by
Honza Osobne
-
10 years ago
1
Update of Ivory Coast Mobile phone test
PCRE (PHP <7.3)
With the new numbers such as 78 79 the regex is now updated!
Submitted by
Alain ZIO
-
10 years ago
1
phanindra.vaga.ranama
Python
sdf
Submitted by
asdf
-
10 years ago
0
html tags with exclusions
PCRE (PHP <7.3)
Matches any text starts with ""; Tag exclusions described in first non-capturing group (can be removed); Tag name will be captured by group #1;
Submitted by
Pavel Savkin aka nhaizere
-
10 years ago
1
Thai Name match
PCRE (PHP <7.3)
no description available
Submitted by
itpcc
-
10 years ago
1
Wyrażenie sprawdzające wiek od 0 do 200
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
extract values inside <![CDATA[...]]
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
Improved RegEx101 ID Grabber
PCRE (PHP <7.3)
Grabs the ID and revision from the URL.
Submitted by
RF
-
10 years ago
1
...
522
523
524
525
526
...
566
Community Library Entry
2
Regular Expression
.NET 7.0 (C#)
@"
^
(
(
\+
?
(
61
\W
?
4
)
)
|
(
04
)
)
\W
?
(
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{3}
\W
[
0
-
9
]
{3}
)
|
(
[
0
-
9
]
{8}
)
|
(
[
0
-
9
]
{4}
\W
[
0
-
9
]
{4}
)
|
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{6}
)
)
$
"
Open regex in editor
Description
validates against multiple common formats
Submitted by
anonymous
-
2 years ago