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 3,040 community submitted regex patterns...
0
Sélectionner le contenu entre parenthèses
PCRE2 (PHP >=7.3)
Sélectionner le contenu entre parenthèses (parenthèses comprises)
Submitted by
scalpa
-
2 years ago
0
match a substring starting from a word and ending at a word
PCRE2 (PHP >=7.3)
match a substring starting from a word and ending at a word
Submitted by
anonymous
-
2 years ago
0
Url breakdown
PCRE2 (PHP >=7.3)
Check validity of url and break it down into logical parts.
Submitted by
jokle
-
2 years ago
0
Get X range of words from a string
PCRE2 (PHP >=7.3)
Get words in a certain range from a varied string
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
hidrologia
PCRE2 (PHP >=7.3)
qualidade
Submitted by
anonymous
-
2 years ago
0
InputInteger
PCRE2 (PHP >=7.3)
InputInteger
Submitted by
anonymous
-
2 years ago
0
Extract countries names in a spaceless string
PCRE2 (PHP >=7.3)
works with strings such as: U.K.TanzaniaU.S.A., UkraineFrance, GermanyU.S.A. Issues: Doesn't work with repeating acronyms, e.g.: U.K.U.S.A.; possible fix: (?:[A-Z]\.){1,3}|A-Z+ Works only with country's acronyms that have the same number of dots as the number of capital letters
Submitted by
whatserface
-
2 years ago
0
Match and capture (go) one or more times
PCRE2 (PHP >=7.3)
Match and capture (go) one or more times
Submitted by
anonymous
-
2 years ago
0
matches 4 or 6 or 8 digit which might be otp
PCRE2 (PHP >=7.3)
test
Submitted by
test
-
2 years ago
0
Polynomial spotter
PCRE2 (PHP >=7.3)
spots polynomial pieces and captures the exponent and coefficient
Submitted by
anonymous
-
2 years ago
0
marcelobc548@gmail.com - Extrair Seções e Aptos
PCRE2 (PHP >=7.3)
Extrair número da seções e quantidade de eleitores aptos.
Submitted by
anonymous
-
2 years ago
0
processo
PCRE2 (PHP >=7.3)
Preciso fazer um Input. 1234569-19.2009.7.19.1009 sobre alterando esses campos AnumeroProcesso%3AnumeroSequencial= ficaria 1234569 AnumeroDigitoVerificador= ficaria 19 AnumeroProcesso%3AAno=ficaria 2009 AnumeroProcesso%3AramoJustica=ficaria 7...
Submitted by
Anderson
-
2 years ago
0
Sports Release Regex attempt #1
PCRE2 (PHP >=7.3)
Yes. Its a thing.
Submitted by
anonymous
-
2 years ago
0
Strip datetime -> date
PCRE2 (PHP >=7.3)
Strip datetime -> date
Submitted by
anonymous
-
2 years ago
0
VK owner id and item id regex
PCRE2 (PHP >=7.3)
This regex allows access to owner id and item id of VK url.
Submitted by
MagicWinnie
-
2 years ago
0
URL
.NET 7.0 (C#)
(@url)([\s]=[\s])(?:')(.)(?:')(?:;)
Submitted by
anonymous
-
2 years ago
0
Crazy Caps Your String -
PCRE2 (PHP >=7.3)
Capitalize every other letter and lower case every alternate letter in your string!
Submitted by
anonymous
-
2 years ago
0
Match the html tags with only whitespaces
PCRE2 (PHP >=7.3)
Match the html tags with only whitespaces
Submitted by
anonymous
-
2 years ago
0
Match Instagram Post Url
PCRE2 (PHP >=7.3)
Match Instagram Post Url Matches: https://www.instagram.com/p/CiqWEQMOVNo/ https://www.instagram.com/p/CiqWEQMOVNo www.instagram.com/p/CiqWEQMOVNo https://instagram.com/p/CiqWEQMOVNo...
Submitted by
anonymous
-
2 years ago
0
Match all links except for links enclosed in curly brackets
PCRE2 (PHP >=7.3)
Match all links except for links enclosed in curly brackets
Submitted by
anonymous
-
2 years ago
1
...
118
119
120
121
122
...
152
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
a year ago