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,040 community submitted regex patterns...
0
Links all, tcx
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Find all commas not in quotes
PCRE (PHP <7.3)
I like have a utility that I use to load records in a DB. I usually save of data as csv, but the utility uses a slightly different (in my opinion simpler) format. The default delimiter is a '|' character. So I need to convert all the commas in the csv to '|', but I don't want to convert commas th...
Submitted by
anonymous
-
6 years ago
0
名称规则
ECMAScript (JavaScript)
只能匹配汉字,数字,字母
Submitted by
anonymous
-
6 years ago
0
Acronym_Central
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
ip
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
capture oracle from ora_home
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
DVD Netflix Queue
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
external, indd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
OWTS
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Mod Sec Critical
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Exim auth fail 01
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
<5.2.28
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
<16.16.19041201
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
<4.10.1904
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
<(16.1.2|17.0.2|18.1.6|19.1.8|20.0.4)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
find bold/italics
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
S/MIME details from Content-Type header
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Facelift
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
不匹配项
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
var _0x1e35
PCRE (PHP <7.3)
var _0x1e35
Submitted by
anonymous
-
6 years ago
1
...
563
564
565
566
567
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(?:
[
A
-
Za
-
z0
-
9!#$%&'*+
\-\/
=?^_`{|}~
]
|
(?<=
^
|
\.
)
"
|
"
(?=
$
|
\.
|
@
)
|
(?<=
"
.
*
)
[
.
]
(?=
.
*
"
)
|
(?<!
\.
)
\.
){1,64}
)
(
@
)
(
(?:
[
A
-
Za
-
z0
-
9.
\-
]
)*
(?:
[
A
-
Za
-
z0
-
9
]
)
\.
(?:
[
A
-
Za
-
z0
-
9
]
){2,}
)
$
/
gm
Open regex in editor
Description
Tries to match RFC 5322 as well as possible
Submitted by
anonymous
-
6 years ago