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
Delimitados por punto y coma
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
No Leading Zeros
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
Datacon.Build.ProjectLine
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Detect path win/linux
PCRE2 (PHP >=7.3)
Détecte si une chaine est un chemin Windows ou Linux valide
Submitted by
anonymous
-
7 years ago
(Last modified a year ago)
1
Check list of integers numbers separated by comma
PCRE (PHP <7.3)
Check list of integers numbers separated by comma Ex: "1, 2, 4, 6" >> OK "99" >> OK "a, b, c" >> WRONG...
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
Extract module name from python expression
Python
no description available
Submitted by
anonymous
-
7 years ago
0
LPS
PCRE (PHP <7.3)
no description available
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
格式化
PCRE (PHP <7.3)
数字格式化,匹配没3位的空格
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
find javascript css html links in html content
PCRE (PHP <7.3)
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
test altDays
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
test altDays
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
alt days regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Strip html tags
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Vertices array to graph data for graph algorithms
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
570
571
572
573
574
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[
1
-
9
]
\d
{0,3}
|
[
1
-
5
]
\d
{4}
|
6
[
0
-
4
]
\d
{3}
|
65
[
0
-
4
]
\d
{2}
|
655
[
0
-
2
]
\d
|
6553
[
0
-
5
]
)
)
$
/
Open regex in editor
Description
validates TCP/UDP port number (1..65535)
Submitted by
sanchox
-
10 years ago