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 9,540 community submitted regex patterns...
0
bash path splitter
PCRE (PHP <7.3)
Split a a path into to groups around a central directory
Submitted by
me
-
3 years ago
0
Uneven numbers of consontants
Java 8
Uneven numbers of consonants
Submitted by
Kristian Reitzel
-
3 years ago
0
youtube
PCRE (PHP <7.3)
AMP - chinatimes
Submitted by
anonymous
-
3 years ago
0
Армянские фамилии
Java 8
Все существовавшие армянские фамилии
Submitted by
Arthur
-
3 years ago
0
Русские фамилии
Java 8
Почти все известные фамилии
Submitted by
Arthur
-
3 years ago
0
Email
Java 8
Test e-amil
Submitted by
uk
-
3 years ago
0
Numeric
PCRE (PHP <7.3)
Regex to get any numeric string
Submitted by
anonymous
-
3 years ago
0
Match 1 or more Jira issueKey in Wiki Markup
Java 8
Jira Wiki Markup content can have multiple issueKeys and repeat the same key up to three times. There are also random forward slash characters in the content and text that may look like a valid key, but is not.
Submitted by
Hank
-
3 years ago
(Last modified 3 years ago)
0
Blacklist regrex
Java 8
INC
Submitted by
anonymous
-
3 years ago
0
youtube
PCRE (PHP <7.3)
asdfasdfasdf
Submitted by
anonymous
-
3 years ago
0
Find SendGrid Palceholder
PCRE (PHP <7.3)
Find SendGrid Palceholder
Submitted by
Alain Ranger
-
3 years ago
0
Simple regex to parse OVAL expressions
Java 8
This regexp helps you to parse text-based OVAL expressions. See the test samples
Submitted by
Alexander Dubok
-
3 years ago
0
molecule elements parser
PCRE (PHP <7.3)
allows to get the sub elements of a molecule symbol and their number.
Submitted by
Quettle
-
3 years ago
0
Array matcher from string
PCRE (PHP <7.3)
Array matcher from string
Submitted by
anonymous
-
3 years ago
0
Selecciona y parsea
Java 8
Dado un archivo de texto selecciona subgrupos
Submitted by
Alexis
-
3 years ago
0
Selecciona subgrupos de un .txt separados por tabulación
Java 8
Dado un archivo .txt, con su contenido separado por tab selecciona cada campo
Submitted by
Alexis Leza
-
3 years ago
0
Selecciona todos los campos separados por |
Java 8
Selecciona todos los campos de un .txt separados por |
Submitted by
Alexis Leza
-
3 years ago
0
Ejemplo de busqueda de cadena de caracteres en .txt
Java 8
Se busca una cadena de caracteres precedida por algo y con una terminación especifica
Submitted by
Alexis Leza
-
3 years ago
0
小数,两位小数
PCRE (PHP <7.3)
^(0-9*)+(\.[0-9]{1,2})?$
Submitted by
zhanyue
-
3 years ago
0
Interview Test Valid Odds
Java 8
Interview Test Valid Odds
Submitted by
anonymous
-
3 years ago
1
...
459
460
461
462
463
...
477
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
-
2 years ago