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,000 community submitted regex patterns...
1
phanindra.vaga.ranama
Python
sdf
Submitted by
asdf
-
9 years ago
1
t4
ECMAScript (JavaScript)
43t
Submitted by
34t
-
9 years ago
1
number separator positions
ECMAScript (JavaScript)
finds the positions in a number to be replaced with a thousands separator, e.g. 12345 => 12`345
Submitted by
anonymous
-
9 years ago
0
html tags with exclusions
PCRE (PHP <7.3)
Matches any text starts with ""; Tag exclusions described in first non-capturing group (can be removed); Tag name will be captured by group #1;
Submitted by
Pavel Savkin aka nhaizere
-
9 years ago
1
Thai Name match
PCRE (PHP <7.3)
no description available
Submitted by
itpcc
-
9 years ago
1
Wyrażenie sprawdzające wiek od 0 do 200
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
extract values inside <![CDATA[...]]
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
-2
Match Content-Range response header
ECMAScript (JavaScript)
Matches the Content-Range response header format -[end]/[total|*]
Submitted by
mdezem
-
9 years ago
-2
Match website - http:|https://i.imgur.com
ECMAScript (JavaScript)
no description available
Submitted by
ghrifter
-
9 years ago
0
Improved RegEx101 ID Grabber
PCRE (PHP <7.3)
Grabs the ID and revision from the URL.
Submitted by
RF
-
9 years ago
1
http://stackoverflow.com/questions/30405364
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Out of office
ECMAScript (JavaScript)
This is why
Submitted by
anonymous
-
9 years ago
-2
Test email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Regex
PCRE (PHP <7.3)
Test
Submitted by
anonymous
-
9 years ago
1
Find a select or select top in a query
ECMAScript (JavaScript)
Some times we need replace de first select in a query to another. In my case i want replace to "Select top 1". With that a can replace any select to select top 1.
Submitted by
Diego Troitiño
-
9 years ago
0
Remove double-slash comments
Python
This regex removes double-slash comments while avoiding anything between 'quotes' or "double quotes".
Submitted by
jlacroix
-
9 years ago
1
Chords
ECMAScript (JavaScript)
Expression to match a large amount of possible musical chords. From what I understand from musicians, the number of chords is basically infinite, but you will still find a certain scope being used freuently.
Submitted by
A=B
-
9 years ago
1
How to get various values within a pipe delimited string
PCRE (PHP <7.3)
We have a pipe delimited text file and each new record is separated by a CRLF. Each record has a fixed number of pipes, but not every column or field is valued, so there may be 2 or more pipes together. Is there a way to write a regex to parse out the third or fifth value? Many thanks in advance.
Submitted by
Jon
-
9 years ago
-2
cofor
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Regexp haus
PCRE (PHP <7.3)
Ejemplo para parsear direcciones de Haus
Submitted by
Leo
-
9 years ago
1
...
846
847
848
849
850
...
900
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
\B
(?=
(
\d
{3}
)+
(?!
\d
)
)
/
g
Open regex in editor
Description
finds the positions in a number to be replaced with a thousands separator, e.g. 12345 => 12`345
Submitted by
anonymous
-
9 years ago