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 360 community submitted regex patterns...
0
Uneven numbers of consontants
Java 8
Uneven numbers of consonants
Submitted by
Kristian Reitzel
-
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
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
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
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
Interview Test Valid Odds
Java 8
Interview Test Valid Odds
Submitted by
anonymous
-
3 years ago
0
First Name (+ Middle Name) and Last Name Shredder
Java 8
Allows you to shredder first name (+ middle name) and last name.
Submitted by
Yusuf Yaşar
-
3 years ago
0
Extract (4.) Switch port state test values by columns
Java 8
adminl2j@child-ex2300-24t> show interfaces ge-0/0/0 terse Interface Admin Link Proto Local Remote ge-0/0/0 up up ge-0/0/0.0 up up eth-switch
Submitted by
Dobri
-
3 years ago
0
Multi Line Copy Right Header
Java 8
Matches a copyright header in a Java-esque multi line comment
Submitted by
PhiSe
-
3 years ago
0
releaes-jdk
Java 8
parse jdk version source
Submitted by
youliang.feng
-
3 years ago
0
Regex para extraer nombres de subreddits
Java 8
Ver
Submitted by
@atnbueno
-
3 years ago
(Last modified 3 years ago)
0
Lua Comment RegEx
Java 8
matches lua comments
Submitted by
Fiereu
-
3 years ago
0
acepta solo consonantes pero solo va en java
Java 8
select consonants but only do work in java ...
Submitted by
anonymous
-
3 years ago
0
fdsf
Java 8
sdf
Submitted by
anonymous
-
3 years ago
1
...
6
7
8
9
10
...
18
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