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
hashcode #15849
ECMAScript (JavaScript)
정규식 예제
Submitted by
anonymous
-
3 years ago
0
regex_honoraires_vf_2
PCRE2 (PHP >=7.3)
guif
Submitted by
guif
-
3 years ago
0
regex_honoraires_vf_3
PCRE2 (PHP >=7.3)
guif
Submitted by
guif
-
3 years ago
0
Browser Group < --Tabs> Filter n' Org
PCRE (PHP <7.3)
Grabs another regex from the Public Library to do most of the dirty work. When a tab is opened it scans and the: head header...
Submitted by
Another Dude
-
3 years ago
0
String literals
ECMAScript (JavaScript)
Matches string literals and contained escape sequences.
Submitted by
anonymous
-
3 years ago
0
match one or more contiguous white space characters
ECMAScript (JavaScript)
match one or more contiguous white space characters in a string. can be used in JS, for example, to replace any white space characters (tab, space, newline), as well as multiple contiguous WS chars, with a single space character. var text = “1 2 \t \n 3”; text = text.replace(/\s+/g, '...
Submitted by
anonymous
-
3 years ago
0
Email Regex
PCRE2 (PHP >=7.3)
email regex
Submitted by
anonymous
-
3 years ago
0
missing semicolons between variable declarations
ECMAScript (JavaScript)
user for bcl this helps to find missing semicolons to trigger an error
Submitted by
Cazpfitl
-
3 years ago
0
Remove emojis and \r
ECMAScript (JavaScript)
remove emojis
Submitted by
gaurav
-
3 years ago
0
URL
ECMAScript (JavaScript)
URL detection
Submitted by
anonymous
-
3 years ago
0
单行注释
ECMAScript (JavaScript)
单行注释
Submitted by
anonymous
-
3 years ago
0
多行注释
ECMAScript (JavaScript)
多行注释
Submitted by
anonymous
-
3 years ago
0
Split number and string
PCRE2 (PHP >=7.3)
Split number and string exp. data as below 17091327 Ren Xian Xtrcb County Bank Corporation Limited 50156 0862315402 19D 17091342 BaoDing QingYuan District Xtrcb Rural Bank Corporation Limit40156 0862315401 19D
Submitted by
anonymous
-
3 years ago
0
starts with number and ends with string or number
Python
starts with number and ends with string or number starts with +ve, -ve or decimal number
Submitted by
suraj
-
3 years ago
0
rackerrank tweet
ECMAScript (JavaScript)
Rackerrank regex prepare
Submitted by
jcbelarmino
-
3 years ago
0
Regex to match the image mime types
PCRE2 (PHP >=7.3)
Matches the image mime types. E.g image/png, image/jpeg, etc.
Submitted by
anonymous
-
3 years ago
0
conditional lookahead (IF (pat1) or (pat2) THEN match (pat1) and/or (pat2) box
Python
Python does not support conditionals using lookaround, even though Python does support lookaround outside conditionals. (?(?=regex) then|else) is illegal in python (?=regex)then|(?!regex)else - this works. madness details in the test strings
Submitted by
PeteC
-
3 years ago
0
reverse commenting/code order
PCRE2 (PHP >=7.3)
reverses order when code is followed by comments (comments prepended with ## )
Submitted by
anonymous
-
3 years ago
0
hi
PCRE2 (PHP >=7.3)
hi
Submitted by
anonymous
-
3 years ago
0
09|10|11
PCRE2 (PHP >=7.3)
select 09|10
Submitted by
ekam230
-
3 years ago
1
...
808
809
810
811
812
...
902
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
(
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
(
\.
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
)*
)
|
(
"
.
+
"
)
)
@
(
(
\[
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\]
)
|
(
(
[
a
-
zA
-
Z
\-
0
-
9
]
+
\.
)+
[
a
-
zA
-
Z
]
{2,}
)
)
$
/
Open regex in editor
Description
email regex
Submitted by
anonymous
-
3 years ago