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
Driverquery
Python
Установленные драйвера
Submitted by
anonymous
-
2 years ago
0
netstat
Python
Активные соединения
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
email valid
Java 8
email validation
Submitted by
Hoot
-
2 years ago
0
1-100
PCRE (PHP <7.3)
1-100
Submitted by
anonymous
-
2 years ago
0
Dutch postalcode regex
ECMAScript (JavaScript)
Matches first postal code, case insensitive
Submitted by
anonymous
-
2 years ago
0
Find GUI {198699vh876ehge}
PCRE2 (PHP >=7.3)
Find a GUI {29v9v9363}
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
HTML to Text only
PCRE2 (PHP >=7.3)
Removing HTML tags completely and only keeping text between them. USAGE: I used it to sum words to calculate reading time for articles.
Submitted by
@navoneel-talukdar - StackOverflow
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
Stripe ID Regex
PCRE2 (PHP >=7.3)
For stripe products or prices
Submitted by
anonymous
-
2 years ago
0
Remove leading and trailing zeros from decimal numbers
PCRE2 (PHP >=7.3)
Remove leading and trailing zeros from decimal numbers
Submitted by
asasine
-
2 years ago
(Last modified 2 years ago)
0
Regex to extract SEED and first 10 ETH addresses.
PCRE2 (PHP >=7.3)
Using iancoleman's Mnemonic Code Generator located at https://iancoleman.io/bip39/, set the COIN type to ETH. Then Ctrl+A (Windows), select all of the text on the page, copy, and paste into the "TEST STRING" located at "Regex101.com". This will leave only the SEED and first 10 ETH addresses as the...
Submitted by
anonymous
-
2 years ago
0
check operator and length
PCRE2 (PHP >=7.3)
check operator and length
Submitted by
anonymous
-
2 years ago
0
Whatsapp group message id
PCRE (PHP <7.3)
Whatsapp group message id
Submitted by
anonymous
-
2 years ago
0
URL SERVER
ECMAScript (JavaScript)
Регулярное выражения для проверки URL адреса сервера
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
提取持股情况
PCRE2 (PHP >=7.3)
能够基于董监高临时公告
Submitted by
mason
-
2 years ago
0
Fraction to decimal
Python
Convert fractions in for of 7 1/2 or 7-1/2 with optional spacing to 7.5 avoiding expressions like 5-7 / 10-11 to be mistaken as 5-7/10
Submitted by
Waleed Kilany
-
2 years ago
0
split a comma separated string ignoring quotes and brackets
PCRE2 (PHP >=7.3)
Breaks a CSV into parts, but keeps those things in quotes (single OR double), or in curved bracket together. preg_match_all('(?:\'(?:\\\\.)\'|"(?:\\\\.)"|(\((?:++|(?1))*\))|)+s', $text, $matches)
Submitted by
anonymous
-
2 years ago
0
Locate all quoted (single or double) text, handling nested and also ignoring when in the first param of a ".replace("
PCRE2 (PHP >=7.3)
See https://onlinephp.io/c/a21b4 for PHP preg_replace_callback results
Submitted by
anonymous
-
2 years ago
0
Isolate javascript elements within [html] text
PCRE2 (PHP >=7.3)
Needed to find all content between ... tags, plus any content within a that has an argument starting with on, e.g. See https://onlinephp.io/ for PHP runtime
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Regex to match all instances not inside quotes
PCRE (PHP <7.3)
See https://stackoverflow.com/questions/6462578/regex-to-match-all-instances-not-inside-quotes
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
1
...
536
537
538
539
540
...
900
Community Library Entry
0
Regular Expression
Python
r"
(
static
\s
*
){0,1}
\w
{1,}
\s
{1,}
\w
{1,}
\s
*
\(
.
*
\)
[^
;
]
"
gm
Open regex in editor
Description
(static\s*){0,1}\w{1,}\s{1,}\w{1,}\s*(.*)[^;]
Submitted by
anonymous
-
2 years ago