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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 12,100 community submitted regex patterns...
1
Minumum 4 letter
PCRE (PHP <7.3)
no description available
Submitted by
LAxman karthi
-
8 years ago
1
find space pipe
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
find includes without quotes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
ABA Numbers Extraction
PCRE (PHP <7.3)
no description available
Submitted by
CI
-
8 years ago
1
Website Truth Checker
PCRE (PHP <7.3)
Determine the truth of a given statement about internet services
Submitted by
Glen H.
-
8 years ago
1
Comic Match
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Only numbers
PCRE (PHP <7.3)
if you input a number there is a match and if it is float there is no match
Submitted by
noby nirmal
-
8 years ago
1
only numbers without dot
PCRE (PHP <7.3)
This regex will detect even a dot after the number
Submitted by
noby nirmal
-
8 years ago
1
Find word in sentense
PCRE (PHP <7.3)
Find the word in sentense
Submitted by
mvaluyko
-
8 years ago
1
linter-elixirc
PCRE (PHP <7.3)
Testing of elixirc output for linter-elixirc validation.
Submitted by
Landon Abney
-
8 years ago
1
nlm
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
(^(\d)?(\d\d-)(.*)$)
PCRE (PHP <7.3)
50-12585
Submitted by
anonymous
-
8 years ago
1
Level Builder
PCRE (PHP <7.3)
Level Builder - parser
Submitted by
Alex Hedley
-
8 years ago
1
Find arguments
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Match regex
PCRE (PHP <7.3)
Get from regex subpattern and its regex
Submitted by
anonymous
-
8 years ago
1
Test
PCRE (PHP <7.3)
Test
Submitted by
anonymous
-
8 years ago
1
dynamic galery in detail-text
PCRE (PHP <7.3)
no description available
Submitted by
romqtw
-
8 years ago
1
http://e3lanatkom.local/index.php?do=shownews
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
@property
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Doubleclick tile1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
464
465
466
467
468
...
605
Ascending and Descending order
-2
Regular Expression
Java 8
"
(?=
\b\d
{8}
\b
)
(?:
(?:
9
?
8
?
7
?
6
?
5
?
4
?
3
?
2
?
1
?
0
?
)
|
(?:
0
?
1
?
2
?
3
?
4
?
5
?
6
?
7
?
8
?
9
?
)
)
(?<=
\d
{8}
)
"
gm
Open regex in editor
Description
This regex is to match Ascending or descending order of 8 digit number
Submitted by
anonymous
-
a year ago