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,280 community submitted regex patterns...
1
match php tag
PCRE2 (PHP >=7.3)
match php tag
Submitted by
Shun Shun
-
a year ago
(Last modified a year ago)
1
Matches All the even numbers
PCRE2 (PHP >=7.3)
Matches all the even numbers from a given input.
Submitted by
Dashrath Sharma
-
a year ago
1
Matches All the Odd Numbers
PCRE2 (PHP >=7.3)
Matches All the Odd Numbers
Submitted by
Dashrath Sharma
-
a year ago
1
convert any youtube video link to an embed in iframe
PCRE2 (PHP >=7.3)
supports all link formats
Submitted by
1Mouse
-
a year ago
1
Email Regex
PCRE2 (PHP >=7.3)
Email address: RFC 2822 Format Matches a normal email address. Does not check the top-level domain. Copied from: https://stackoverflow.com/a/16168103/4640611
Submitted by
anonymous
-
a year ago
1
Quartz .NET Cron Schedule Validation
PCRE2 (PHP >=7.3)
Matches a list of cron expressions which are valid in the Quartz .NET library Quartz Net Cron Expression
Submitted by
Michael Robertson
-
a year ago
(Last modified a year ago)
1
Glyph name Bulgarian local form
PCRE2 (PHP >=7.3)
replace .bgr with cyr_BGR in replace string
Submitted by
anonymous
-
a year ago
1
force download file (HTML5)
PCRE2 (PHP >=7.3)
This regex is written for a Joomla plugin. This REGEX force to DOWNLOAD à PDF file instead of showing PDF in browser
Submitted by
Sébastien LHUILLIER
-
a year ago
1
Initializing identifiers
.NET 7.0 (C#)
Initializing identifiers
Submitted by
anonymous
-
a year ago
1
blek! File ResourceD resource regex
PCRE2 (PHP >=7.3)
Used in https://git.blek.codes/blek/bfile
Submitted by
anonymous
-
a year ago
1
Domain name validator
PCRE2 (PHP >=7.3)
Validates domain names. Support https:// or http:// prefix.
Submitted by
._thunderstrike
-
a year ago
1
Simple path detector
PCRE2 (PHP >=7.3)
Detect paths under Windows format.
Submitted by
._thunderstrike
-
a year ago
1
Folders
PCRE2 (PHP >=7.3)
Folders
Submitted by
anonymous
-
a year ago
1
Files
PCRE2 (PHP >=7.3)
Files
Submitted by
anonymous
-
a year ago
1
Функции с сайта
PCRE2 (PHP >=7.3)
(\\)(.+)(\\)
Submitted by
anonymous
-
a year ago
1
Unicode Mixed Case Word Detector
PCRE2 (PHP >=7.3)
Detects mixed case words using Unicode
Submitted by
Hooge
-
a year ago
1
regex vietnam number phone
PCRE2 (PHP >=7.3)
regex phone number all telco in Vietnam. at 11/08/2023
Submitted by
hao.nguyen
-
a year ago
1
Translations Regex
PCRE2 (PHP >=7.3)
Traduções pra ajudar a encontrar as mensagens em cada caso
Submitted by
anonymous
-
a year ago
1
Cedula Paraguaya con Digito Verificador
PCRE2 (PHP >=7.3)
Valida la C.I. de Paraguay con DV (Opcional)
Submitted by
anonymous
-
a year ago
1
nmcli WiFi list
PCRE2 (PHP >=7.3)
Extract different fields from the list output of nmcli: nmcli --terse --colors no --fields IN-USE,BSSID,SSID,MODE,CHAN,RATE,SIGNAL,BARS,SECURITY,FREQ,DEVICE device wifi list
Submitted by
Simon Bagley
-
a year ago
(Last modified a year ago)
1
...
26
27
28
29
30
...
164
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
(?<!
^
)
(?=
[
A
-
Z
]
[
a
-
z
]
)
|
(?<=
[
a
-
z
]
)
(?=
[
A
-
Z
]
)
"
g
Open regex in editor
Description
Splits camel-case string and preserves acronyms
Submitted by
Tyler S.
-
a year ago