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
Telefone fixo com DDD
ECMAScript (JavaScript)
Matches the pattern (99) 999-999
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
CEP
ECMAScript (JavaScript)
Match Brazilian zipcode pattern (CEP): 99999-999
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
CPF
ECMAScript (JavaScript)
Regex para encontrar um CPF no formato: 999.999.999-99
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
service selector parser
ECMAScript (JavaScript)
HV Platform
Submitted by
anonymous
-
2 years ago
0
Azure Firewall traffic Logs
PCRE2 (PHP >=7.3)
Azure Firewall traffic Logs
Submitted by
anonymous
-
2 years ago
0
Azure Firewall Nat traffic
PCRE2 (PHP >=7.3)
Azure Firewall Nat traffic
Submitted by
anonymous
-
2 years ago
0
match tree output
Python
replace tree-like intandents to any others like hashtags or spaces
Submitted by
anonymous
-
2 years ago
-2
Parsing result of SQL Server version (SELECT @@VERSION)
.NET 7.0 (C#)
Parses MS SQL Server version returned from executing SELECT @@version
Submitted by
M Rivas
-
2 years ago
0
Crime List Fixer
PCRE2 (PHP >=7.3)
Final step in cleaning up some bad links
Submitted by
anonymous
-
2 years ago
0
Removing port number from URL
ECMAScript (JavaScript)
Find port number and remove it from URL
Submitted by
M Rivas
-
2 years ago
0
Matches MM/DD/YYYY for the years 1800 through 2099
PCRE2 (PHP >=7.3)
Source: https://stackoverflow.com/questions/8647893/regular-expression-leap-years-and-more Seems to be valid for 1800 through 2099. Requires leading zeros. Matches MM/DD/YYYY format only.
Submitted by
Andrew Macheret
-
2 years ago
0
WIP detector
Python
Detect WIP strings in a git commit.
Submitted by
anonymous
-
2 years ago
0
This regular expression matches one or more exclamation marks, with or without a space/newline character immediately following it.
PCRE2 (PHP >=7.3)
This regular expression matches one or more exclamation marks, with or without a space/newline character immediately following it.
Submitted by
anonymous
-
2 years ago
0
elasticsearch exception explain regex
Java 8
throw elasticsearch exception logger info, find exception type and reason field
Submitted by
jason
-
2 years ago
0
Parse non-standard json like strings
PCRE2 (PHP >=7.3)
Parse non-standard json like strings
Submitted by
zhangtai
-
2 years ago
0
Padrão - numeração de contrato CAIXA
ECMAScript (JavaScript)
teste
Submitted by
anonymous
-
2 years ago
0
Time with AM & PM
PCRE2 (PHP >=7.3)
This is a re that can validate time with date with AM and PM
Submitted by
anonymous
-
2 years ago
2
Mime type parser
.NET 7.0 (C#)
A "simple" regex to parse mime types. Handles all commonly occurring parts of a mime type string such as: Type Subtype Subtype's with an extra extension (e.g. svg+xml) (Optional input) Multiple parameters (Optional input)...
Submitted by
Vespion
-
2 years ago
(Last modified 2 years ago)
0
non capturing (a|b|c)가 그룹으로 지정되지 않게 함.
Python
\[[0-9]{4}-[0-9]{2}-[0-9]{2}\](\[(?:debug|warning|error)\]).*
Submitted by
anonymous
-
2 years ago
0
telephone
PCRE2 (PHP >=7.3)
telephone
Submitted by
anonymous
-
2 years ago
1
...
75
76
77
78
79
...
900
Community Library Entry
0
Regular Expression
Golang
`
(?s)
\.
GetModification
(?:
String
|
Number
|
Bool
|
Object
|
Array
)
\(
\s
*
[
"'
]
(
[
\w
\-
]
+
)
[
'"
]
\s
*
,
\s
*
(
[
"'
]
[^
"
]
*
[
'"
]
|
[
+-
]
?
(?:
\d
*
[
.
]
)?
\d
+
|
true
|
false
|
False
|
True
)
(?:
\s
*
,
\s
*
(?:
true
|
false
|
\d
+
|
"
[^
"
]
*
"
)
)?
\s
*
\)
`
gm
Open regex in editor
Description
Go SDK v2
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)