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...
0
NewGen Strategies website - converting article to modal window
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Date / Time format similar to Oracle
PCRE (PHP <7.3)
YYYY-MM-DD_hh24:mi:ss
Submitted by
anonymous
-
4 years ago
0
csv file - prepare to import 2
Python
В первом столбце может не быть ни одной или быть несколько запятых в данных. Второй столбец -- 3 больших латинских буквы Нужно окружить 1й столбец csv-файла
Submitted by
anonymous
-
4 years ago
0
csv file - fixture 1
PCRE (PHP <7.3)
surround a column with comma in data with double quotes
Submitted by
anonymous
-
4 years ago
0
integer number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Regex to Split string by comma but exclude comma in brackets parentheses
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Split nested brackets
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Combination of lookahead and lookbehind
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
date time
Python
1/Jul/2013 03:27:12ss
Submitted by
himel
-
4 years ago
0
Comma separated numbers
Python
no description available
Submitted by
anonymous
-
4 years ago
0
overly complicated postal code regex
Python
no description available
Submitted by
anonymous
-
4 years ago
0
regex for phone (US & CAN)
Python
no description available
Submitted by
anonymous
-
4 years ago
0
ALE
PCRE (PHP <7.3)
Update name of clips with Episode/Scene/Slate/Take/Cam/Select
Submitted by
anonymous
-
4 years ago
0
CSCE project (normal task regex)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
CSCE project (regex for bonus portion)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
-1
Teoria 1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
email address regex
Python
Extract an email address that's within a string
Submitted by
anonymous
-
4 years ago
0
Use Case 12
PCRE (PHP <7.3)
12 signed JWT base64data DOT base64data DOT base64dataeyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJyZWNvbW1fZW5naW5lIiwiQVBQTElDQVRJT05fVk8iOiJ7XCJhcHBsaWNhdGlvbl9pZFwiOlwicmVjb21tX2VuZ2luZVwiLFwic2VjcmV0XCI6XCJxN2FSVEQlTG5QXCJ9IiwiaWF0IjoxNjAzMDk4OTExLCJleHAiOjE2MDMxMDYxMTF9.ycKnC6aoYDFl3eN9rPay1TbHcOSWL8qchBX...
Submitted by
anonymous
-
4 years ago
0
Use Case 11
PCRE (PHP <7.3)
11 aws access key id AccessKeyId AND base64 encoded 15 bytes string RegEx - to be checked aws_access_key_id = 123456789012 aws_access_key_id = dJPAKRh75gkGBSc13y0M...
Submitted by
sahilkapila
-
4 years ago
-1
Any combo of space and dash
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
...
268
269
270
271
272
...
900
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
(
(
[
(_)a
-
zA
-
Z0
-
9
\.\-
]
{1,}
)
(
@
)
(
[
a
-
zA
-
Z0
-
9
\-
]
+
)
(
\.
)
(
[
a
-
zA
-
Z
]
{2,3}
)
(
(
\.
)
(
[
a
-
z
]
{2,3}
)
)?
)
/
gm
Open regex in editor
Description
matches on emails.. try it
Submitted by
Singh
-
3 years ago