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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 12,660 community submitted regex patterns...
0
Mac Address
PCRE (PHP <7.3)
Mac address is 6 parts of 2 hexadecimal digits separated by a special character "-" so, there are 5 parts of digits followed by the character "-" then, one part without that character.
Submitted by
EMAM1999
-
3 years ago
0
Setup php source extension regex
ECMAScript (JavaScript)
Setup php source extension regex
Submitted by
anonymous
-
3 years ago
0
Reguläre Ausdrücke
PCRE (PHP <7.3)
Eine Aufgabe die man Lösen muss, wenn man die Lösung kennt.
Submitted by
anonymous
-
3 years ago
0
10 digit phone number
ECMAScript (JavaScript)
Phone number regex
Submitted by
anonymous
-
3 years ago
0
Remove bold surrounding italic
ECMAScript (JavaScript)
Remove bold surrounding italic
Submitted by
anonymous
-
3 years ago
0
Hitomi.la
PCRE (PHP <7.3)
this is used for Hdoujin download Hitomi.la Instance
Submitted by
anonymous
-
3 years ago
0
Hexadecimal code
PCRE (PHP <7.3)
4 "digit" hexadecimal code
Submitted by
anonymous
-
3 years ago
0
Get URL inside parentheses
ECMAScript (JavaScript)
got it from here [Regex to match URL, ends up matching URL plus closing brackets when URL is between brackets [duplicate]](https://stackoverflow.com/questions/60476363/regex-to-match-url-ends-up-matching-url-plus-closing-brackets-when-url-is-betwe)
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
CSV to Array
ECMAScript (JavaScript)
Captures a line of a CSV into a individual values.
Submitted by
Samuel Molinski
-
3 years ago
0
CTS Non zero
ECMAScript (JavaScript)
CTS Non zero regex
Submitted by
anonymous
-
3 years ago
0
getChannelVideos()
PCRE (PHP <7.3)
To download the information of Youtube Channel Videos
Submitted by
anonymous
-
3 years ago
0
getchannel
PCRE (PHP <7.3)
get channel
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Useless texts
PCRE (PHP <7.3)
Useless texts
Submitted by
Antério vieria
-
3 years ago
0
Litecoin-1fcfd
PCRE (PHP <7.3)
litecoin:Ldeontgmqp8NJnwk8pwcM4gv31VhJL2WgS?label=luckyfish.%20io%20tnlzsp6i93b9
Submitted by
anonymous
-
3 years ago
0
sentence break
ECMAScript (JavaScript)
breaks the blobs into sentences
Submitted by
Imran A
-
3 years ago
0
filter Google Cloud monitoring labels
PCRE (PHP <7.3)
useful for filtering data from Gooogle Compute Engine monitoring into grafana
Submitted by
NR0Q
-
3 years ago
0
YAML Textmate Grammar - Name Property Hoister
ECMAScript (JavaScript)
YAML Textmate Grammar - Name property hoister Moves a later name key value pair in multi-value block map definition to the top of its body (e.g. value with - prefix), easily changable to other keys and indent levels. Details/Notes on Modification ...
Submitted by
disk0
-
3 years ago
0
ECMAScript - Variable Identifier
ECMAScript (JavaScript)
Any valid ECMAScript identifier name
Submitted by
disk0
-
3 years ago
0
Single Letter, No Numbers + Letter Exclusions
PCRE (PHP <7.3)
Allow users to only enter a single letter, no numbers, and determine which characters they are not allowed to enter (both uppercase and lowercase).
Submitted by
anonymous
-
3 years ago
0
提取特殊字符中间内容
ECMAScript (JavaScript)
用于提取特殊字符中间内容
Submitted by
lqzo
-
3 years ago
1
...
593
594
595
596
597
...
633
Parse date between 1000 and 2012 in format(YYYY/MM/DD HH:MM)
0
Regular Expression
PCRE (PHP <7.3)
/
\s
+
|
^
(
(
1
[
0
-
9
]
{1,3}
)
|
(
20
[
0
-
1
]
[
0
-
2
]
)
|
(
200
[
0
-
9
]
)
)
\/
(
(
0
[
0
-
9
]
)
|
[
0
-
9
]
|
[
1
]
[
0
-
2
]
)
\/
(
(
[
0
-
2
]
[
0
-
9
]
)
|
(
30
)
)
(
(
[
0
-
1
]
[
0
-
9
]
)
|
(
[
2
]
[
0
-
4
]
)
)
:
(
[
0
-
6
]
[
0
-
9
]
)
/
gmi
Open regex in editor
Description
This my first regExp)
Submitted by
Andy
-
9 years ago