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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 11,880 community submitted regex patterns...
0
filestore directory
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
filestore filename
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Enclose <div> tag with <p> tag when inside <p> tag
PCRE (PHP <7.3)
Change the tags only when they are within a tag.
Submitted by
LukStorms
-
8 years ago
0
version tag
PCRE (PHP <7.3)
Verify if the given text is a version tag, like git tags for versions in the git flow method
Submitted by
bruno-delfino1995
-
8 years ago
0
Get shortcode
PCRE (PHP <7.3)
Get shortcode
Submitted by
khiconit
-
8 years ago
0
filename and extension
PCRE (PHP <7.3)
no description available
Submitted by
4B1D F4DL14N N
-
8 years ago
0
Check not minified file
PCRE (PHP <7.3)
This regex will match only filenames not containing the ".min" marker
Submitted by
anonymous
-
8 years ago
0
UK phone numbers
PCRE (PHP <7.3)
Source: http://stackoverflow.com/questions/36777840/how-to-validate-phone-number-in-laravel-5-2 Thanks to: Nady Shalaby
Submitted by
Nady Shalaby
-
8 years ago
0
Duplicate word match
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
P1 registers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
regex for finding url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
redirections catégorie ordinateur-portable
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Match part of css
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
解析華為KB
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Match Indian 10 digit mobile without extension
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find sql name for rotator
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
JS function to arrow notation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Callstack parent caller
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
TP Parse
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
2
3
4
5
...
594
Krist name or address
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
k
[
a
-
z0
-
9
]
{9}
$
|
^
(?:
(
[
a
-
z0
-
9-_
]
{1,32}
)
@
)?
(
[
a
-
z0
-
9
]
{1,64}
)
.
kst
$
/
gmi
Open regex in editor
Description
Krist
name or address regex, where names also support metanames.
Source 1
Source 2
Submitted by
anonymous
-
4 months ago