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 5,560 community submitted regex patterns...
0
Simple password validator
ECMAScript (JavaScript)
verify that a password string is from length 8 - 16, while allowing word and non-word characters.
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
scrape pdf
Python
get data from pdf
Submitted by
anonymous
-
2 years ago
0
Meh
Python
d
Submitted by
anonymous
-
2 years ago
0
Find WikiRace baseURL
ECMAScript (JavaScript)
https://github.com/d-k-bo/WikiRace
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Números enteros aislados
Python
Hace coincidir números enteros aislados para el sistema de numeración decimal. test: 11 +11 -11 99-99 a99 a+99 a-99 99a +99a -99a
Submitted by
Johnny Alonso
-
2 years ago
0
Extarct Gene Name from GTF File
Python
The following regex can be used to extract gene names from gtf files
Submitted by
anonymous
-
2 years ago
0
Valores numéricos aislados
Python
Hace coincidir para el sistema de numeración decimal valores numéricos aislados, es decir, valores no unidos a otros caracteres. test: 11 +11 -11 99-99 a99 a+99 a-99 99a +99a -99a 22e22 22e+22 +22e22 +22e+22 22.22 22. .22 22.e22 22.e+22 22.22e22 22.22e+22 .22e22 .22e+22 88e 88e+ e88 e+88 88e88.
Submitted by
Johnny Alonso
-
2 years ago
0
Pick third section
Python
Pick third section
Submitted by
Charles
-
2 years ago
0
Truncate words to only 2 first characters of the word
ECMAScript (JavaScript)
It grabs 2 first characters from a word. So: please will be pl sure and sun will be su white and what will be wh ...
Submitted by
anonymous
-
2 years ago
0
check mail
ECMAScript (JavaScript)
Vérifie si le mail est valide ou non
Submitted by
anonymous
-
2 years ago
0
Match all filenames in any URL including those with ANSI escaped characters (Js/python version)
ECMAScript (JavaScript)
Match all filenames in any URL including those with ANSI escaped characters (Js/python version).
Submitted by
The Fourth Bird
-
2 years ago
(Last modified 2 years ago)
0
Regex to flag the word "pharmafia"
Python
Useful for forum moderators looking to flag variations of the word "pharmafia" in comments. captures the following variations: pharmafia ph4rm4f14 phar_mafia phar-mafia
Submitted by
tychopotts
-
2 years ago
0
FiveM cfx.re/join Link Regex
Python
Matches any valid cfx.re/join/ links.
Submitted by
Johnny_JTH
-
2 years ago
0
docker image tag name
ECMAScript (JavaScript)
javascript regex for docker image tag name from doc
Submitted by
ahmad safari
-
2 years ago
0
docker image tag name
ECMAScript (JavaScript)
javascript regex for docker image tag name from doc
Submitted by
ahmad safari
-
2 years ago
0
Python program to match if two words from a list of words starting with letter 'P'.
Python
Python program to match if two words from a list of words starting with letter 'P'.
Submitted by
anonymous
-
2 years ago
0
First Character can not be space, and allow only characters
ECMAScript (JavaScript)
First character can not be space and only characters are allowed
Submitted by
anonymous
-
2 years ago
0
Remove ANSI escape codes
Python
Remove ANSI escape codes
Submitted by
anonymous
-
2 years ago
0
iCalendar property parsing
Python
parses property strings as used by iCalendar. Kinda.
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Remove all duplicate words
ECMAScript (JavaScript)
Removes all words that are NOT followed by a space, followed by the same word
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
1
...
252
253
254
255
256
...
278
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
\+
7
|
7
|
8
)
(
(
\-\(
[
0
-
9
]
{3}
\)\-
)
|
(
\(
[
0
-
9
]
{3}
\)
)
|
(
\s
[
0
-
9
]
{3}
\s
)
|
(
\-
[
0
-
9
]
{3}
\-
)
|
[
0
-
9
]
{3}
)
[
0
-
9
]
{3}
(
(
\s
|
\-
)?
)
[
0
-
9
]
{2}
(
(
\s
|
\-
)?
)
(
[
0
-
9
]
{2}
)
)
$
/
Open regex in editor
Description
Работает с форматами +7, 7, 8 Варианты валидации любые.
Submitted by
anonymous
-
a year ago