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 12,280 community submitted regex patterns...
0
Gets param info from ncdump
PCRE (PHP <7.3)
input string from find . -type f -iname "*.nc" | while read i; do ncdump -h "$i"; done | grep -E "long_name|units" output is comma delimited param info: name, description, units [required] source of definition is netcdf long_name...
Submitted by
anonymous
-
5 years ago
0
退房1.0.0.0502-1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Whatsapp Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
订房1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
续住1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
叫车1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ex1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
接送机1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
投诉1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
送餐1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
洗衣1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
加床1.0.0.0503
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ex3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Wii the-eye.eu
PCRE (PHP <7.3)
Extract info from anchor links
Submitted by
anonymous
-
5 years ago
0
Canadian Phone Number Validator
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Data attributes with or without value
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
nginx server_name tokenizer
PCRE (PHP <7.3)
This regex sets different parts of the url host in variables : $domain $namespace $feature $isAPI...
Submitted by
anonymous
-
5 years ago
0
Test
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
DACH mob tel
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
address
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
469
470
471
472
473
...
614
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
^
(?=
(?<http>
(?:
https
?
:
\/\/
){1}
(?:
www
\.
)?
)?
)
(?
(?=
\k<http>
?
(?<ipaddr>
(?:
\d
{1,3}
\.
){3}
\d
{1,3}
(?:
\:
\d
{1,5}
)?
)
)
\k<http>
?
\k<ipaddr>
(?:
\.
[
\w
]
{1,9}
)?
|
\k<http>
(?:
[
\w
]
\.
?
){1,255}
\.
[
\w
]
{1,9}
)
(?:
\/
.
*
)?
$
"
gm
Open regex in editor
Description
Can be used to validate on URL's.
Submitted by
anonymous
-
a year ago