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 9,560 community submitted regex patterns...
2
uri template validation
PCRE (PHP <7.3)
validating uri template
Submitted by
Tirta Wijaya
-
9 years ago
2
Brazilian Telephone Regex
PCRE (PHP <7.3)
A regex for brazilian telephones
Submitted by
André Ramos (github.com/andrelramos)
-
9 years ago
2
ACTGatewaTranscript
PCRE (PHP <7.3)
Regex to find ACTGateway Transcript entries when discarding logs
Submitted by
jfilipek
-
9 years ago
2
Basic Email
PCRE (PHP <7.3)
no description available
Submitted by
Kareem Cambridge
-
9 years ago
2
Shorten file path with /../
PCRE (PHP <7.3)
Example usage: $Path = preg_replace('/(?:^|(?<=\/))(?:+|\.(?!\.\/))++\/\.\.\//i', '', $Path);
Submitted by
Mr.Deek & +OnlineCop
-
9 years ago
2
MyFRegex
PCRE (PHP <7.3)
Hi
Submitted by
mymoon
-
9 years ago
2
Email Address Matching
PCRE (PHP <7.3)
Picks out valid email addresses from string.
Submitted by
Rob Lester
-
9 years ago
2
Dir\File.Ext
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
imdb id
PCRE (PHP <7.3)
imdb
Submitted by
little badger
-
9 years ago
2
permalinks
PCRE (PHP <7.3)
skip if the url is a permalink
Submitted by
andreasonny83@gmail.com
-
9 years ago
2
Wordpress Plugins Readme Parse Youtube
PCRE (PHP <7.3)
Wordpress Plugins Readme Parse Youtube
Submitted by
onigetoc
-
9 years ago
2
Detecting numbers
PCRE (PHP <7.3)
signed or unsigned numbers with exponents or not
Submitted by
Mohammed Yehia
-
9 years ago
2
Extract .mp3 url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Float Representation
PCRE (PHP <7.3)
no description available
Submitted by
S-YOU
-
9 years ago
2
Chinese slang words regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Common Taiwanese slang regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
prova1
PCRE (PHP <7.3)
.((black\-?friday\.ga)|(alibestsale\.com)|(build\-?a\-?better\-?business\.2your\.site)|(callmebold\.com)|(centurylink\.net)|(cyber\-?monday\.ga)|(digg\.com)|(euro\.typepad\.jp)|(exmail\.qq\.com)).
Submitted by
anonymous
-
9 years ago
2
Fix Card Def
PCRE (PHP <7.3)
no description available
Submitted by
yyrkroon
-
9 years ago
2
LUN UID
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
...
459
460
461
462
463
...
478
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