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 18,040 community submitted regex patterns...
0
MIME To field possible inputs
PCRE (PHP <7.3)
Each line in TEXT represents potential input data. The regex is useless so far as my original using assertions neglected the case where required matches occur between double quotes.
Submitted by
anonymous
-
11 years ago
0
Help creating a Regex Pattern
PCRE (PHP <7.3)
Please help with a regex that will find a pattern like this ✖ or this ∀ or this Π
Submitted by
anonymous
-
11 years ago
-2
1_aa3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
11 years ago
1
price selector
PCRE (PHP <7.3)
Matches any of the prices in the text below: Im asking $15,500 OBO Im asking 15,400$ Im asking 15400$ Im asking $15400 Im asking 15 400$...
Submitted by
chocksy
-
11 years ago
0
some shit
PCRE (PHP <7.3)
find all js link on page source
Submitted by
hobot
-
11 years ago
2
Punto antes de ¿ o ¡
ECMAScript (JavaScript)
Corregir la falta de punto cuando se abre un signo de exclamación o interrogación para el idioma español.
Submitted by
paconaranjo
-
11 years ago
1
Remove italics in less than three letters...
ECMAScript (JavaScript)
Subtitle Edit
Submitted by
paconaranjo
-
11 years ago
2
PHP file path with wrappers
PCRE (PHP <7.3)
Breaks file path up into wrappers, root, and path components. Understands both Windows (DOS) and Unix style paths. Wrappers and path components can be farther processed in code. Path component should support any visible Unicode character but not things like VT, HT or any other non-printing character...
Submitted by
Dragonaire
-
11 years ago
2
Search abbreviations
PCRE (PHP <7.3)
This reges searches all abbreviations of command "var|iable" in multiline script
Submitted by
ibes
-
11 years ago
0
easy Email Detection
PCRE (PHP <7.3)
easy Email Detection
Submitted by
Max Mustermann
-
11 years ago
1
Signed integer
ECMAScript (JavaScript)
no description available
Submitted by
markus hooge
-
11 years ago
1
Linkedin profile matching regex
PCRE (PHP <7.3)
This a regex for matching linkedin profile URLs
Submitted by
@antespi
-
11 years ago
-2
Find multiple XML documents in file
PCRE (PHP <7.3)
as title says
Submitted by
Doro
-
11 years ago
-2
indonesian p0rn word filter
PCRE (PHP <7.3)
find and replace bad and p0rn indonesian words
Submitted by
teknokoplak
-
11 years ago
-3
regex help
PCRE (PHP <7.3)
help please. i need regex,
Submitted by
James
-
11 years ago
1
Замена двойных кавычек (внутри кавычек) в названиÑÑ… организаций
ECMAScript (JavaScript)
О кавычках внутри кавычек ЕÑли внутри Ñлов, заключенных в кавычки, вÑтречаютÑÑ Ð´Ñ€ÑƒÐ³Ð¸Ðµ Ñлова, в Ñвою очередь заключенные в кавычки, рекомендуетÑÑ (при уÑловии, что д...
Submitted by
l-luk
-
11 years ago
2
filter tags and select text in between.
PCRE (PHP <7.3)
You can use it as a language selector.
Submitted by
koko
-
11 years ago
2
Minecraft Entity Target Splitter
PCRE (PHP <7.3)
Regex to match part of minecraft command entity targets
Submitted by
aziis98
-
11 years ago
2
xbmc - videodevil - chaturbate - test
Python
no description available
Submitted by
anonymous
-
11 years ago
0
Remove litteral \n
Python
This regex remove \n like litteral string not a newline
Submitted by
Nkio
-
10 years ago
1
...
38
39
40
41
42
...
902
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
(?<phone>
(
\+
?
\d
{1,4}
?
[
-.
\s
]
?
)?
(
\(
\d
{1,4}
?
\)
)?
[
-.
\s
]
?
\d
{1,4}
[
-.
\s
]
?
\d
{1,4}
[
-.
\s
]
?
\d
{1,9}
)
|
(?<email>
[
\w
\-
]
[
\w
\-\.
]
+
@
[
\w
\-
]
[
\w
\-\.
]
+
[
a
-
zA
-
Z
]
{1,4}
)
/
gi
Open regex in editor
Description
Extract the phone numbers and email addresses from a string
Submitted by
Mukesh Jangid
-
a year ago