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,020 community submitted regex patterns...
0
where's the wiki regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
simple url to web site match
ECMAScript (JavaScript)
simple url to web site match (es6)
Submitted by
anonymous
-
8 years ago
0
Expression regular microsoft falso zip adjunto
PCRE (PHP <7.3)
Una expresión regular para adjuntos con extensión zip . phising de microsoft
Submitted by
David Gatica
-
8 years ago
0
Time conversion
ECMAScript (JavaScript)
Let's me extract time values from a conversation.
Submitted by
anonymous
-
8 years ago
0
Matching Balanced Constructs Recursive Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Time - Hour Minute (H:i) -> 00:00 - 23:59
PCRE (PHP <7.3)
This matches times that fall within the normal range of times 00:00 - 23:59. It also allows for no leading zero for times like 6:24.
Submitted by
quixrick
-
8 years ago
0
No content other then whitespace line
PCRE (PHP <7.3)
The beginning of a line, followed by 0 or more whitespace characters,[\r\n\t\f\v ] followed by the end of a line. SOURCE: https://stackoverflow.com/a/114861
Submitted by
anonymous
-
8 years ago
0
80
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Detect Instruction
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Designed to extract field type and its size, if available, from the definition of the columns in a SQLite query.
PCRE (PHP <7.3)
i.e : input: "NUMERIC(5,2) NOT NULL DEFAULT ('100.00')" extract : Name = [...
Submitted by
anonymous
-
8 years ago
0
t
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
pipes and carrots
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Angular Dependencies Extraction
PCRE (PHP <7.3)
"es6-shim": "^0.35.0", "lodash": "^4.13.1", "ng2-bootstrap": "^1.0.16", "reflect-metadata": "0.1.3", "rxjs": "5.0.0-beta.6", "systemjs": "0.19.26",...
Submitted by
Aymon Fournier
-
8 years ago
0
Extract URL and Text Title from Web Page
PCRE (PHP <7.3)
Uses a list of anchor tags, perhaps embedded in other tags Allows for any, or no text between the "<a" and the "href"
Submitted by
anonymous
-
8 years ago
0
PHP preg_match
PCRE (PHP <7.3)
All PHP preg_match
Submitted by
Tomer
-
8 years ago
(Last modified a year ago)
0
Match formstack url with js.php
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
URL parser
PCRE (PHP <7.3)
Parse a URL and return its components From http://userid:password@example.com/file1/file2?test=1&test=2#here you will get: Full match = http://userid:password@example.com/file1/file2?test=1&test=2#here Group protocol = http...
Submitted by
Gilles Marchand
-
8 years ago
0
Russian Telephone number in worldwide format
PCRE (PHP <7.3)
no description available
Submitted by
Niklan
-
8 years ago
0
kill file extension graphic doc formats
PCRE (PHP <7.3)
``
Submitted by
anonymous
-
8 years ago
0
Plate side
PCRE (PHP <7.3)
doesn't work yet
Submitted by
anonymous
-
8 years ago
1
...
394
395
396
397
398
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[
\+\-
EeWw
]
)?
(
[
0
]
?
\d
?
\d
|
1
[
0
-
7
]
\d
|
180
)
[
°˚º^~*
\s
\-
_
]
+
(
[
0
-
5
]
\d
|
\d
)
[
'′
\s
\-
_
]
+
(
[
0
-
5
]
?
\d
|
\d
)
(
[
.
]
\d
*
)?
[
"¨˝
\s
_
]
*
(
[
\+\-
EeWw
]
)?
)
(
[
\s
\-
_:|,;
\/\\
]
+
)
(
(
[
\+\-
NnSs
]
)?
(
[
0
-
8
]
?
\d
|
90
)
[
°˚º^~*
\s
\-
_
]
+
(
[
0
-
5
]
?
\d
|
\d
)
[
'′
\s
\-
_
]
+
(
[
0
-
5
]
?
\d
|
\d
)
(
[
.
]
\d
*
)?
[
"¨˝
\s
\-
_
]
*
(
[
\+\-
NnSs
]
)?
)
[
\s
]
*
$
/
mg
Open regex in editor
Description
Checks DMS given in Longitude / Latitude order
Submitted by
Anthony Giles
-
8 years ago