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
PEP440 version
PCRE (PHP <7.3)
Parses a PEP440 version. WARNING: This is a greedy regex and it might catch strings you don't expect it to, any number triggers it. PEP440 documentation: https://www.python.org/dev/peps/pep-0440/
Submitted by
anonymous
-
6 years ago
0
Python version (PEP440)
PCRE (PHP <7.3)
Parses a python version which follows the PEP440 versioning scheme, obtained by calling the command python --version. This is done in an almost strict manner in order to avoid picking up undesired strings.
Submitted by
anonymous
-
6 years ago
0
urls
PCRE (PHP <7.3)
url
Submitted by
anonymous
-
6 years ago
0
2018-11-12
ECMAScript (JavaScript)
for grouping orders and information parsing
Submitted by
anonymous
-
6 years ago
0
feetinches1
Python
no description available
Submitted by
anonymous
-
6 years ago
0
201811發報碼使用規則
PCRE (PHP <7.3)
最多32個字元 可允許的字元為數字[0-9]、大小寫英文[a-z A-z]與 "-" 前六個字一定是數字,例: YYYYMM 後面可直接是數字或英文字 可用一個 "-" 或 "" 做分隔,不能連續。例:"---"、"___"、"-_" 尾端不留 "-" 例:201811example-...
Submitted by
anonymous
-
6 years ago
0
Matches Symbols on Keyboard
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
201811發報碼使用規則
PCRE (PHP <7.3)
最多32個字元 可允許的字元為數字[0-9]、大小寫英文[a-z A-z]與 "-" 前六個字一定是數字,例: YYYYMM 後面可直接是數字或英文字 可用一個 "-" 或 "" 做分隔,不能連續。例:"---"、"___"、"-_" 尾端不留 "-" 例:201811example-...
Submitted by
anonymous
-
6 years ago
0
Email Validation (minus some corner cases)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
multicast regex
ECMAScript (JavaScript)
(22[5-9]|23[0-9])\.(25[0-5]|20-4|10-9|[1-9]?[2-9])\.0\.0
Submitted by
anonymous
-
6 years ago
0
Duque de Grupo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
regexurl2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
SQL Columns
PCRE (PHP <7.3)
Gibt alle Spaltennamen zurück
Submitted by
anonymous
-
6 years ago
0
Email Finder
PCRE (PHP <7.3)
Identifies an email
Submitted by
anonymous
-
6 years ago
0
Words before commmas
PCRE (PHP <7.3)
Look around pattern to find words before commas
Submitted by
anonymous
-
6 years ago
0
Full names before commmas
PCRE (PHP <7.3)
Full Names before commas
Submitted by
anonymous
-
6 years ago
0
Email - Consecutive Special Characters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
aprs
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Remove comments and empty lines
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
properties
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
520
521
522
523
524
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
*
(
\d
{4}
-
?
)?
\d
{2}
-
?
\d
{3}
-
?
\d
{4}
*
$
/
Open regex in editor
Description
RegEx to validate a NATO Stock Number with or without the NATO Stock Code and with or without dashes
Submitted by
Matthew Perryman
-
9 years ago