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,120 community submitted regex patterns...
1
XTREAM / M3U Link
PCRE2 (PHP >=7.3)
Matches the M3U links provided by Xtream servers to stream IPTV
Submitted by
Ɒ○ꝑẹЄпс○ὔпדּẹꭆ
-
8 months ago
1
Zuma Game
PCRE2 (PHP >=7.3)
Tests if a Zuma board can be cleared completely
Submitted by
wheatup
-
8 months ago
(Last modified 8 months ago)
1
Blibli apps url
PCRE2 (PHP >=7.3)
blibli apps marketplace url
Submitted by
ival
-
8 months ago
1
Blibli web url
PCRE2 (PHP >=7.3)
Blibli marketplace web url
Submitted by
ival
-
8 months ago
1
Username@Hostname:port w capture groups
PCRE2 (PHP >=7.3)
used to parse alphanum usernames @ hostnames w portnumbers utilizing capture groups
Submitted by
Johnathan Smithers
-
8 months ago
(Last modified 4 months ago)
1
Unary prime numbers
PCRE2 (PHP >=7.3)
Matches all lines whose length is a prime number and only contain the character "1".
Submitted by
pablo
-
8 months ago
(Last modified 8 months ago)
1
HID Usage Tables to Rust Enum
PCRE2 (PHP >=7.3)
A regex to transform tables from https://usb.org/sites/default/files/hut1_2.pdf to rust enum items After pasting be sure to remove the whitespaces
Submitted by
dzervas
-
8 months ago
1
(([a-z]*\d+[a-z\d\-\\\/]*[\s\,]+)+)(?=([a-z]+[\s\,\b$]))
PCRE2 (PHP >=7.3)
Подряд идущие слова в которых обязательно должна быть цифра. Выбирать до первого слова без цифр. Также в словах могут быть символы /-\ До цифр в слове могут быть только буквы.
Submitted by
anonymous
-
8 months ago
1
Obsidian.md Remotely Save
PCRE2 (PHP >=7.3)
This regex is for Obsidian's plugin Remotely Save. This helps ignoring all config files except some.
Submitted by
LucasD
-
8 months ago
1
extract url
PCRE2 (PHP >=7.3)
extract url
Submitted by
anonymous
-
8 months ago
1
Multiple substrings between string and a space
PCRE2 (PHP >=7.3)
Multiple substrings between string and a space
Submitted by
anonymous
-
8 months ago
1
T Launcher Regex
PCRE2 (PHP >=7.3)
Checks for t launcher
Submitted by
anonymous
-
8 months ago
(Last modified 8 months ago)
1
Tag Extractor for Sonarr V3 Release Profiles
PCRE2 (PHP >=7.3)
Better migrate everything to custom format after updating to Sonarr V4!
Submitted by
anonymous
-
8 months ago
1
SGML Element (.Net)
PCRE2 (PHP >=7.3)
Parses an SGML . Doesn't support name groups. Probably imperfect in other ways. Note this is crafted for .Net as things get a little weird with # matching.
Submitted by
Scott Bednar
-
8 months ago
1
SGML Element (.Net)
PCRE2 (PHP >=7.3)
Parses an SGML . It doesn't account for name groups. See https://sgmljs.net/docs/sgmlrefman.html. Note that the "Flavor" should be .NET as things get a little weird with the # matching.
Submitted by
anonymous
-
8 months ago
(Last modified 8 months ago)
1
Connection String Parser
PCRE2 (PHP >=7.3)
Parses connection strings into named groups Key and Value , which can then be handled by whatever programmatic method you like. Ideally handled as key value pairs. I did this in PowerShell using the below: function Resolve-ConnectionString {...
Submitted by
rbleattler
-
8 months ago
1
Replace all occurences of a caracter except if placed between "
PCRE2 (PHP >=7.3)
Replace all occurences of the caracter ; except if it placed between two " signs.
Submitted by
ccroche helped by ChatGPT
-
8 months ago
1
XC410
PCRE2 (PHP >=7.3)
QS
Submitted by
anonymous
-
8 months ago
1
Maven Version
PCRE2 (PHP >=7.3)
Based on https://docs.oracle.com/middleware/1212/core/MAVEN/maven_version.htm#A1000661 this validates all maven versions.
Submitted by
Baaji Shayeed Shaik
-
8 months ago
1
check csv content
PCRE2 (PHP >=7.3)
a
Submitted by
abc
-
9 months ago
1
...
20
21
22
23
24
...
156
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(?:
[
A
-
Za
-
z0
-
9+
]
+
)
(?:
[
._-
]
{1}
[
A
-
Za
-
z
]
+
)*
)
(
[
._-
]
{1}
(?:
[
+
-
_
\d
A
-
Za
-
z.
]
*
)*
)*
$
/
gm
Open regex in editor
Description
Splitting Additionalname in Basename and Specification
Submitted by
JK
-
a year ago
(Last modified a year ago)