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 14,260 community submitted regex patterns...
1
Formatar CPF
PCRE (PHP <7.3)
Retorna um cpf no formato 123.456.789-11. Cpf de entrada deve conter apenas números
Submitted by
anonymous
-
7 years ago
0
Extract just the strings surrounded by ~~
PCRE (PHP <7.3)
To mark them italic
Submitted by
anonymous
-
7 years ago
0
Select between 2 strings
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
json
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
srx messages
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Java DocComments containing only '@see' information
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Full name with comma
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
davaydarit.ru
PCRE (PHP <7.3)
Учли цену с пробелом
Submitted by
anonymous
-
7 years ago
1
Localhost/private ip origin check
PCRE (PHP <7.3)
Used by CORS to check for localhost/private IP origins Check out the unit tests at /r/2Ofume/1/tests
Submitted by
ngokimphu
-
7 years ago
0
davaydarit.ru
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Find html Table with id
PCRE (PHP <7.3)
(.*?)
Submitted by
anonymous
-
7 years ago
-1
Website (scheme,host,port,path and query)
PCRE (PHP <7.3)
This is regex for website url matching scheme,host,port,path and query. I did it because in c#, class Uri does not understand urls without scheme and says that 'google.com' is invalid url.
Submitted by
anonymous
-
7 years ago
0
Person Name
PCRE (PHP <7.3)
One or more words, separated by one space. Allowed letters from any alphabet, dashes, dots and spaces (not more than one successively). Must begin with a letter and end with a letter or dot.
Submitted by
kostya
-
7 years ago
0
subtitle vtt multiline parser
PCRE (PHP <7.3)
(c) tamekitten
Submitted by
anonymous
-
7 years ago
0
Clean Matcher
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
citations 1
Python
no description available
Submitted by
anonymous
-
7 years ago
0
universal mp3 tag decoder
PCRE (PHP <7.3)
no description available
Submitted by
Ryan Faricy
-
7 years ago
0
Procura por script insert e update
PCRE (PHP <7.3)
no description available
Submitted by
Tiago
-
7 years ago
0
Linux terminal Paging
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Extract Video ID from YouTube URLs
PCRE (PHP <7.3)
This straight forward regex extracts the Video ID from many different YouTube URL types.
Submitted by
Teocci
-
7 years ago
1
...
464
465
466
467
468
...
713
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?i)(?m)
(?<!
[
a
-
z
]
|
\.
|
\.
\d
|
\d
|
\/
|
\-
|
\—
)
(?:
-
?
\d
{1,4}
)
(?:
[
.,
\s
]
\d
{3}
)*
(?:
[
.,
]
\d
{2}
)
(?!
\%
|
\d
|
\.
|
\s
\.
|
\s
cm
|
cm
|
pol
|
\s
pol
)
/
g
Open regex in editor
Description
Regex que concontra todo o tipo de preços descritos em formato de fatura universal.
Submitted by
anonymous
-
7 years ago