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
test altDays
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
sysfs wwid
PCRE (PHP <7.3)
Expression for linux sysfs wwid parse (/sys/block/sda/device/wwid)
Submitted by
Edgar Cherkasov
-
7 years ago
0
MyMaths Tokens
ECMAScript (JavaScript)
no description available
Submitted by
Sriram R
-
6 years ago
0
find javascript css html links in html content
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Parsing json to split between names, values and delimiting characters
PCRE (PHP <7.3)
Splits json into 2 groups - values and delimiters of objects, arrays, pairs, names, values
Submitted by
GigaMacRex
-
7 years ago
0
格式化
PCRE (PHP <7.3)
数字格式化,匹配没3位的空格
Submitted by
anonymous
-
7 years ago
0
Detecting Valid Latitude and Longitude Pairs
PCRE (PHP <7.3)
Detecting Valid Latitude and Longitude Pairs HackerRank
Submitted by
anonymous
-
7 years ago
0
LPS
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
add thousands to number
PCRE (PHP <7.3)
%# 1. create your formated string x = 12345678; str = sprintf('%d',x) %# 2. use regexprep to add commas %# flip the string to start counting from the back...
Submitted by
anonymous
-
7 years ago
0
Datacon.Build.ProjectLine
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
AT errormail
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
show run parse interfaces (with configs)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
No Leading Zeros
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
jvm core dump grab
Golang
no description available
Submitted by
anonymous
-
7 years ago
0
Delimitados por punto y coma
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Get MultipleCheckbox parameter
PCRE (PHP <7.3)
Return all get checkbox parameters. String: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2 &tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B1%5D=6&cHash=0bc48e5ae84ndb2705e9297feecd3a84 Will find: tx_example%5Bfilter%5D%5BfilterIndustry%5D%5B0%5D=2 and split this to...
Submitted by
anonymous
-
7 years ago
0
'$1',
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Settlement statement transformation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Windows Security Log Event ID 4624
PCRE (PHP <7.3)
An account was successfully logged on
Submitted by
anonymous
-
7 years ago
0
Windows Security Log Event ID 4625
PCRE (PHP <7.3)
An account failed to log on
Submitted by
anonymous
-
7 years ago
1
...
112
113
114
115
116
...
900
Community Library Entry
5
Regular Expression
Python
r"
.
*
@
(
\S
+
)
"
Open regex in editor
Description
Find and extract email domain. Ex:
test@example.pt
-> extract 'example.pt'
Submitted by
Fnxk
-
9 years ago