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
Fate stay/night [HuneX/PSV]
Python
Fate stay/night PS Vita version parsing
Submitted by
anonymous
-
a year ago
(Last modified a year ago)
0
Fate Stay/Night (PC/JP) [Py]
Python
Attempting to parse Fate/Stay Night scripts nicely
Submitted by
anonymous
-
a year ago
0
Attribute value
PCRE2 (PHP >=7.3)
eeee
Submitted by
Me
-
a year ago
0
AT+ - Image
PCRE2 (PHP >=7.3)
parse at+ syntax
Submitted by
Carsten
-
a year ago
0
New Discord Username
ECMAScript (JavaScript)
Validates if a username is valid or not on the new discord username system
Submitted by
anonymous
-
a year ago
0
Old Discord Username Match
ECMAScript (JavaScript)
Detect and capture every part of the old discord username system
Submitted by
N0de
-
a year ago
0
选择题题目与选项匹配
Python
对有ABCD四个选项的选择题题目进行匹配
Submitted by
Wang Miao
-
a year ago
0
whois
PCRE (PHP <7.3)
whois find param
Submitted by
anonymous
-
a year ago
0
Add quotes to a malformed JSON string
ECMAScript (JavaScript)
This Regex allows to add double-quotes to a JSON string that is missing them. It assumes we have a space after the ":" and also after the ",".
Submitted by
anonymous
-
a year ago
2
URL Regex
.NET 7.0 (C#)
Matches protocol, domain, port, path, query and anchor as named capturing groups.
Submitted by
Jonathan
-
a year ago
(Last modified a year ago)
0
comma separated ESPEC
Python
ESPEC
Submitted by
Ian Cole
-
a year ago
0
Retrieve all number version from tag
PCRE2 (PHP >=7.3)
This regex will retrieve all number in a given tag
Submitted by
Marc Masure
-
a year ago
0
Bangladeshi phone numbers
ECMAScript (JavaScript)
Matches all Bangladeshi SIM numbers
Submitted by
Mushfiq Talha
-
a year ago
(Last modified a year ago)
0
Remove .html from url
PCRE2 (PHP >=7.3)
I used in Nginx to rewrite the location from http://example.com/about.html to http://example.com/about
Submitted by
Vijay Amirtha Raj J
-
a year ago
1
Extract schema and domain from URI.
PCRE2 (PHP >=7.3)
Doesn't work on domains that include dashes (after the dash).
Submitted by
Roke Julian Lockhart Beedell
-
a year ago
0
telegram links
PCRE2 (PHP >=7.3)
.
Submitted by
AC Lover
-
a year ago
(Last modified a year ago)
1
Single line of .env file
PCRE2 (PHP >=7.3)
Parse a single line of a .env file From repo dotenv - source code here.
Submitted by
Mot (https://github.com/motdotla)
-
a year ago
0
CUIT Argentina sin guiones
PCRE2 (PHP >=7.3)
CUIT Argentina sin guiones
Submitted by
Lucas David Ferrero
-
a year ago
0
All Strings for same-lines, Syntax or Parsing
PCRE2 (PHP >=7.3)
All Strings on One Line Php java javascript python escapes all regex...
Submitted by
kai gouthro
-
a year ago
(Last modified a year ago)
2
regex data e time
ECMAScript (JavaScript)
pega a data e time
Submitted by
jaffar
-
a year ago
1
...
45
46
47
48
49
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(?<DAY>
d-
[
0
-
9
]
{1,2}
|
(
[
12
]
[
0
-
9
]
|
3
[
01
]
|
0
[
1
-
9
]
|
[
1
-
9
]
)
|
d
)
(?<MONTH>
m-
[
0
-
9
]
{1,2}
|
(
0
[
1
-
9
]
|
1
[
012
]
)
|
m
)
(?<YEAR>
y-
[
0
-
9
]
{1,2}
|
(
[
12
]
[
09
]
[
0
-
9
]
[
0
-
9
]
)
|
y
)
$
/
gmix
Open regex in editor
Description
Regex for date for example in saved reports (01m-1y) beginning of last month Format -> dmy
Submitted by
Mayer@netgo.org
-
10 years ago