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
Denco exceptions 3-2-20
PCRE (PHP <7.3)
Broadcast, Multicast and Intrado
Submitted by
anonymous
-
5 years ago
0
[PPC] Like Search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ORDERS96B MATCH ITEM LINES METHOD 2
PCRE (PHP <7.3)
^LIN[\s\S]?(?=^LIN.?)|^LIN[\s\S]* FIRST PART From the first line string of an item line --> ^LIN over line breaks --> [\s\S]*? to before (lookahead) the next line element --> (?=^LIN.*?)...
Submitted by
Raik Zobel
-
5 years ago
0
ORDERS96B MATCH ITEM LINES METHOD 1
PCRE (PHP <7.3)
Same as "ORDERS96B MATCH ALL ITEM LINES METHOD 1" with a lazy quantifier to get multiple matches. This works only, if the last line of a item line elemet is known, otherwise try METHOD 2 From the first line string of an item line --> ^LIN over line breaks --> [\s\S]*? to the last line string of an ...
Submitted by
Raik Zobel
-
5 years ago
0
ORDERS96B MATCH ALL ITEM LINES METHOD 2
PCRE (PHP <7.3)
From the first line string of an item line --> ^LIN over line breaks --> [\s\S]* to before (lookahead) the first line after the whole item line string --> (?=^UNS)
Submitted by
Raik Zobel
-
5 years ago
0
ORDERS96B MATCH ALL ITEM LINES METHOD 1
PCRE (PHP <7.3)
From the first line string of an item line --> ^LIN over line breaks --> [\s\S]* to the last line string of an item line --> ^DTM.*
Submitted by
Raik Zobel
-
5 years ago
0
ORDERS96B MATCH LINE DESCRIPTION
PCRE (PHP <7.3)
ORDERS96B Example of matching the line description of a ORDERS96B flatfile. IMD+F++:::DIN 7979 D Stahl blank | 8x30 Zylin' (?) + (?) + (?) + (? (?) : (?) : (? : (?) ) '...
Submitted by
Raik Zobel
-
5 years ago
0
Get File name (no ext) from pathname
PCRE (PHP <7.3)
[Event "Live Chess"] [Site "Chess.com"] [Date "2019.01.05"] [Round "-"] [White "ahihi3138"] [Black "gcao1"]...
Submitted by
anonymous
-
5 years ago
0
Numbers except integers starting with zero
Python
matches: 1234 .0123 0.123 no matches:...
Submitted by
anonymous
-
5 years ago
0
Update ea parameters name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Date dd-mm-yyyy
Python
no description available
Submitted by
anonymous
-
5 years ago
0
IntegerNumbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
FloatingPointNumbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Operators
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Word
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
Catch react-like components using JS
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
FirstVar11
Python
ONE reg expression to use
Submitted by
anonymous
-
5 years ago
0
dqFormatValidationICD910
PCRE (PHP <7.3)
Basic format validation for ICD9, 10 Conditions; 3-7 characters
Submitted by
anonymous
-
5 years ago
0
dqFormatValidationICD910
PCRE (PHP <7.3)
Basic format validation for ICD9, 10 Conditions; 3-7 characters
Submitted by
anonymous
-
5 years ago
0
Regular expression for gmail's email
ECMAScript (JavaScript)
This is my test of an regular expression. It matches not all but maximum gmail account's syntax.
Submitted by
anonymous
-
5 years ago
1
...
346
347
348
349
350
...
902
Community Library Entry
0
Regular Expression
Python
r"
\d
{1,}
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
)
=
(
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
(
\+
|
\-
|
\*
|
\/
)
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
|
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
)
$
"
gm
Open regex in editor
Description
ONE reg expression to use
Submitted by
anonymous
-
5 years ago