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 3,740 community submitted regex patterns...
0
nvsm
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Formula All Operands
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Formula Parse Operand
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Remove forward/reply prefixes (F:, Fw:, Fwd:, Re:, R:) from an email subject
ECMAScript (JavaScript)
C# Code Sample: var subject = "RE: RE:Fw: RE:FW: FWD: re: This is a message from a long thread re: asdf "; var pattern = @"((?:[\t ](?:R|RE|F|FW|FWD):[\t ]))(.)"; var regex = new Regex(pattern, RegexOptions.ECMAScript | RegexOptions.IgnoreCase); var match = regex.Match(subject); var extr...
Submitted by
safeer
-
6 years ago
0
Participant Slug
ECMAScript (JavaScript)
'a-z' - lowercase 'A-Z' - uppercase '-' - hyphens 0-9 - numeric {5, 32} between 5 and 32 characters
Submitted by
anonymous
-
6 years ago
0
Pull text-align value from HTML markup
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
i.imgur.com Link matcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Client ID matcher w/ nickname allowance
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
webpack igonore ionicon svg file
ECMAScript (JavaScript)
webpack igonore ionicon svg file
Submitted by
anonymous
-
6 years ago
0
MarkDown italic style parser
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Request any file names endings with `_lang.js`
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
gitlab-push-rules-prohibited-file-names-regex
Golang
GitLab Push Rules Citation Push rules are essentially pre-receive Git hooks that are easy to enable in a user-friendly interface. They are defined globally if you are an admin or per project so you can have different rules applied to different projects depending on your needs. 1...
Submitted by
gregswindle
-
6 years ago
0
Ta Creation Date
ECMAScript (JavaScript)
Trafikstyring S-bane den 5. marts 2019 Extracts the date from a sting like the one above
Submitted by
anonymous
-
6 years ago
0
Matching Start and End
ECMAScript (JavaScript)
Task You have a test string S. Your task is to match the pattern Xxxxx. Here, x denotes a word character, and X denotes a digit. S must start with an X digit and end with '.' symbol. S should be 6 characters long only.
Submitted by
anonymous
-
6 years ago
0
eeriryah
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for ssn
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Expresiones regulares primer parcial
ECMAScript (JavaScript)
Se detalla que la formula hace match hasta iniciar las horas de ahí para adelante no realiza match
Submitted by
anonymous
-
6 years ago
0
Remove Trailing Slash
ECMAScript (JavaScript)
It extracts 3 groups before trailing slash trailing slash queryString ?name1=value1 Then, combing group 1 and group 3....
Submitted by
anonymous
-
6 years ago
0
Work Experince in Years
ECMAScript (JavaScript)
Should allow in the following format YY.MM (Years.Months)
Submitted by
anonymous
-
6 years ago
0
Punto 3 parcial
ECMAScript (JavaScript)
psi
Submitted by
anonymous
-
6 years ago
1
...
118
119
120
121
122
...
187
Community Library Entry
0
Regular Expression
Python
r"
to=<
(?P<email>
\S
+
)
>,
\s
relay=
(?!
10
\.
10
\.
10
\.
)
(?P<relay>
\S
+
)
,
.
+
dsn=
(?P<dsn>
\d
+
\.
\d
+
\.
\d
+
)
,
\s
status=
(?!
sent
)
(?P<status>
\w
)
\w
+
\s
\(
(?:
host
\s\S
+
\[
\S
+
\]
\s
said:
\s
)?
(?P<code>
\d
{3}
)?
"
g
Open regex in editor
Description
Full regex for failed sendings
Submitted by
anonymous
-
8 years ago