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
One Digit Numbers
PCRE (PHP <7.3)
Found here https://stackoverflow.com/questions/6067592/regular-expression-to-match-only-alphabetic-characters
Submitted by
anonymous
-
5 years ago
0
x:y => y x
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Adds ;
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
x# => float x
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
e
Python
e
Submitted by
anonymous
-
5 years ago
0
f
PCRE (PHP <7.3)
f
Submitted by
anonymous
-
5 years ago
0
g
PCRE (PHP <7.3)
g
Submitted by
anonymous
-
5 years ago
0
h
PCRE (PHP <7.3)
h
Submitted by
anonymous
-
5 years ago
0
i
PCRE (PHP <7.3)
i
Submitted by
anonymous
-
5 years ago
0
j
PCRE (PHP <7.3)
j
Submitted by
anonymous
-
5 years ago
0
PHP Log - Timestamp
PCRE (PHP <7.3)
Match timestamp eg.: [08-Jan-2020 08:20:59 UTC]
Submitted by
anonymous
-
5 years ago
0
Clerk Receipts
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Negstive lookahead of agreements not prersent in search index
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
[2,2] => {2,2}
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
public X X(y, => public X X(int y,
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
If x; => if (x){
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ElseIf x; => else if (x){
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
remove all html tags, even < and > on different lines
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Capture Status followed by Nested JSON
PCRE (PHP <7.3)
Capture Status followed by Nested JSON
Submitted by
anonymous
-
5 years ago
0
match float point number either with thousand comma or without.
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
1
...
639
640
641
642
643
...
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