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 11,920 community submitted regex patterns...
1
BUNGALOW NL MODEL V 2 PRICE CAPTURE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
MD link to html
PCRE (PHP <7.3)
no description available
Submitted by
cr
-
8 years ago
1
regex tel mobile fr
PCRE (PHP <7.3)
no description available
Submitted by
talipcr
-
8 years ago
1
Pushjet UUID Match
PCRE (PHP <7.3)
Matches a valid Pushjet UUID
Submitted by
anonymous
-
8 years ago
1
Pushjet UUID Match
PCRE (PHP <7.3)
Matches a valid Pushjet UUID
Submitted by
anonymous
-
8 years ago
1
Pushjet Server Pubkey
PCRE (PHP <7.3)
Matches a valid Pushjet Server Pubkey
Submitted by
anonymous
-
8 years ago
1
Pushjet Service Privkey
PCRE (PHP <7.3)
Matches a pushjet service private key
Submitted by
anonymous
-
8 years ago
1
Parenthesis 1
PCRE (PHP <7.3)
Look for parenthesis containing a mathematical equation.
Submitted by
anonymous
-
8 years ago
1
video
PCRE (PHP <7.3)
no description available
Submitted by
riya
-
8 years ago
1
polish landline numbers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Elite:Dangerous system jump parsing
PCRE (PHP <7.3)
Matches lines which indicate jumping into a new system in the Elite:Dangerous netLog files. Extracts pertinent data; most important are the Time, System Name, and Star Position. The rest is not interesting (yet) so the regexp could be simplified a little for better performance.
Submitted by
anonymous
-
8 years ago
1
euro
PCRE (PHP <7.3)
euro
Submitted by
mario
-
8 years ago
1
956896685
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
String no longer than 100
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
^\\s+$
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
EclipseKeyword_1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Sランク
PCRE (PHP <7.3)
Added new combatant (クロック・ミテーヌ|ケロゲロス|ガーロック|ボナコン|ナンディ|チェルノボーグ|レドロネット|ウルガル|マインドフレア|サウザンドキャスト・セダ|ゾーナ・シーカー|ブロンテス|バルウール|ヌニュヌウィ|ミニョーカオン|サファト|アグリッパ|カイザーベヒーモス|極楽鳥|ガンダルヴァ|セーンムルウ|ペイルライダー|レウクロッタ)
Submitted by
anonymous
-
8 years ago
1
$1_$1_suffix
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
hkey user classes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
email match
PCRE (PHP <7.3)
match email address, with groups for entire email and domain.com
Submitted by
anonymous
-
8 years ago
1
...
474
475
476
477
478
...
596
Community Library Entry
40
Regular Expression
PCRE (PHP <7.3)
/
(
(
(
[
A
-
Za
-
z
]
{3,9}
:
(?:
\/\/
)?
)
(?:
[
-;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9.-
]
+
|
(?:
www
.
|
[
-;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9.-
]
+
)
(
(?:
\/
[
\+
~%
\/
.
\w
-_
]
*
)?
\?
?
(?:
[
-
\+
=&;%@.
\w
_
]
*
)
#
?
(?:
[
.
\!\/\\
w
]
*
)
)?
)
/
ig
Open regex in editor
Description
A quite neat regular expression for URLs, e-mails..., I found on Matthew O'Riordan's blog.
Submitted by
Matthew O'Riordan
-
12 years ago