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...
5
youtube url match
ECMAScript (JavaScript)
extract video id, index, play list id from youtube URL
Submitted by
anonymous
-
9 years ago
0
CSV parser
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Category and subitems
Python
Categories with items name, type and size
Submitted by
Alex
-
9 years ago
1
aabc lazy capture
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Portuguese phone numbers
ECMAScript (JavaScript)
Matches Portuguese phone numbers.
Submitted by
github.com/luis140219
-
9 years ago
1
Simple Telephone number regex
PCRE (PHP <7.3)
It accepts phone numbers of the form 0XX XXX XX XX (stylized here, it doesn't really accept spaces). Also, it can detect the international area code (e.g. +41 OR 0041 for Switzerland). It's not a good idea to rely on the groups (because they do not work for this reason. At ALL.
Submitted by
Adowrath
-
9 years ago
1
pure url and uri
ECMAScript (JavaScript)
no description available
Submitted by
Thiago Souza
-
9 years ago
1
Cleaning up epub converts
PCRE (PHP <7.3)
no description available
Submitted by
Cory
-
9 years ago
1
HTTP => HTTPS
PCRE (PHP <7.3)
Force all URLs to HTTPS.
Submitted by
WhatIsHeDoing
-
9 years ago
-2
lowercase words followed by uppercase words. Be able to separate words
PCRE (PHP <7.3)
Tinta del paísSuelo: Arena 100%Altitud media: 900mEdad del viñedo: PrefiloxeraRendimiento: 1800 Kg/haLugar: Ribera del Duero, FuentelcéspedBodega:Bodegas y Viñedos Juan Manuel Burgos
Submitted by
Eduard eduard.fabra@uvinum.com
-
9 years ago
1
Parse Logs
PCRE (PHP <7.3)
http://stackoverflow.com/questions/32067661/regex-get-all-text-after-pattern-from-log-c-sharp/32067747#32067747
Submitted by
anonymous
-
9 years ago
1
Parse Logs
PCRE (PHP <7.3)
http://stackoverflow.com/questions/32067661/regex-get-all-text-after-pattern-from-log-c-sharp/32067747#32067747
Submitted by
anonymous
-
9 years ago
1
Parse Logs
PCRE (PHP <7.3)
Parsing Logs http://stackoverflow.com/questions/32067661/regex-get-all-text-after-pattern-from-log-c-sharp/32067747#32067747 Avinash Raj http://stackoverflow.com/users/3297613/avinash-raj
Submitted by
Avinash Raj
-
9 years ago
1
Youtube ID
PCRE (PHP <7.3)
get youtube video ID
Submitted by
anonymous
-
9 years ago
1
Validate City Names
ECMAScript (JavaScript)
Validate City Names (For USA/ Other country)
Submitted by
Ashish
-
9 years ago
1
Name Initials
ECMAScript (JavaScript)
Matches 2 or 3 initials from a name. If there is a "," and suffix like Jr., it does not include that in the result.
Submitted by
Brad M.
-
9 years ago
1
Floating Point
ECMAScript (JavaScript)
Tests a floating point number
Submitted by
Josh L. Rasmussen
-
9 years ago
3
Currencies
PCRE (PHP <7.3)
Matches numbers formatted like currencies
Submitted by
elgehelge
-
9 years ago
0
Clojure
Python
no description available
Submitted by
anonymous
-
9 years ago
0
Parse date between 1000 and 2012 in format(YYYY/MM/DD HH:MM)
PCRE (PHP <7.3)
This my first regExp)
Submitted by
Andy
-
9 years ago
1
...
816
817
818
819
820
...
902
Community Library Entry
0
Regular Expression
PCRE2 (PHP >=7.3)
/
(
cognito-idp
\.
(
[
a
-
z
]
{2}
-
[
a
-
z
]
{3,5}
-
[
0
-
9
]
{1,3}
)
\.
amazonaws
\.
com
\/
(
[
a
-
z
]
{2}
-
[
a
-
z
]
{3,5}
-
[
0
-
9
]
{1,3}
_
[
0
-
9
]
{7,11}
)
)
/
gm
Open regex in editor
Description
https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-dg.pdf#cognito-scenarios
Submitted by
anonymous
-
2 years ago