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,000 community submitted regex patterns...
0
match float point number either with thousand comma or without.
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
abc
PCRE (PHP <7.3)
just test
Submitted by
anonymous
-
5 years ago
0
match float point number either with thousand comma or without. no leading zero is allowed
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
if (InvertX=1) => if (InvertX==1)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
For EachIn => foreach
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
For EachIn => foreach
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
c[]n=[x,y] => c[]n=new c[]{x,y};
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Select => switch
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
DIAM_METHOD
Python
no description available
Submitted by
anonymous
-
5 years ago
0
hapus - dari nomor
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Comma separated values
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Remove IDs from MySQL Insert
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Set(Scale|Blend|Alpha|Rotation|Color)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Ticket price Qantas
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Draw(Image|Text)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
x$ => string x
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Mathf.(Cos|Sin|Tan|Asin|Acos|Atan|Sgn|Sqr)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Nginx matcher correct
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Kafka replay topics regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Local v[]=[0,0,0] => int[] v=new int[]{0,0,0}
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
640
641
642
643
644
...
900
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
<a
[^
>
]
+
href=
[
\"
|
\'
]
(
.
*
?
)
[
\"
|
\'
]
[^
>
]
*
>
(
(?:
.
(?!
\<\/
a
\>
)
)*
.
)
<
\/
a>
/
gm
Open regex in editor
Description
A RegEx for find out the match of the text in between a tag and href attribute value.
Submitted by
Mosrur
-
4 years ago