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 9,460 community submitted regex patterns...
2
Regex Shortcode
PCRE (PHP <7.3)
Check shortcode
Submitted by
khiconit
-
8 years ago
2
IP Address
PCRE (PHP <7.3)
IPv4 Address Input
Submitted by
anonymous
-
8 years ago
2
Eircode
PCRE (PHP <7.3)
Eircode validation for new postcodes identifiers in Republic of Ireland. Case-insensetive for easier user input. Added optional space separator to follow same pattern as in UK post codes and in examples used in eircode spec.
Submitted by
Arek Jaworski
-
8 years ago
2
Match multiline comments /* ... */
PCRE (PHP <7.3)
It won't match single line comments like this one: //* This comment won't be match */ ^ see the double / Works in PHP without the g modifier.
Submitted by
SimonaHalep
-
8 years ago
2
php naming convension (classes, vars, functions, constants)
PCRE (PHP <7.3)
PHP Basic coding standard Naming Convension pattern: /^\pL_*$/
Submitted by
Najmuddeen Mohammed
-
8 years ago
2
check name
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
2
Iranian birth date
PCRE (PHP <7.3)
Iranian birth date aka tarikh tavalod تاریخ تولد ایرانی ها
Submitted by
ehsanJamalian
-
7 years ago
2
shenasname code
PCRE (PHP <7.3)
Iranian identity code aka shenasname code شماره شناسنامه ایرانی ها
Submitted by
ehsanJamalian
-
7 years ago
2
Matching Character Class Transitions (customization of \b)
PCRE (PHP <7.3)
\b can be replicated as (?<=\w)(?=\W)|(?<=\W)(?=\w) Understanding how to create these class transitions can be beneficial for several reasons. In this instance, counting the results of this regex can be used to measure randomness within strings containing multiple character classes.
Submitted by
@notGeorgePBurdell
-
7 years ago
2
NSU ID Card Checker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
2
Better version of UK postcode
PCRE (PHP <7.3)
This UK postcode regex will match all variants of postcode formats including inner London postcodes (eg SW1A), with optional space (both AL11XP and AL1 1XP are valid) It will reject any postcode that does not specify a valid postcode area. Each part of the postcode is also captured into a capture ...
Submitted by
anonymous
-
6 years ago
2
Match "A B C" where A+B=C (final version)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
2
Código Postal
PCRE (PHP <7.3)
Verifica Código Postal [Portugal]
Submitted by
anonymous
-
5 years ago
2
BEM
PCRE (PHP <7.3)
CSS Coding Guideline BEM (Block Element Modifier)
Submitted by
anonymous
-
4 years ago
2
手机正则
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
2
Resolvers
PCRE (PHP <7.3)
APD SFs too general
Submitted by
anonymous
-
4 years ago
2
DD/MM pattern
PCRE (PHP <7.3)
Checks for DD/MM pattern must start and end with the digits no letters or other symbols allowed. Made by your good guy Levent M. (it accepts also 28+/02 but yhea one problem at a time right?)
Submitted by
anonymous
-
4 years ago
2
IPv4 with an undefined amount of 0 before every number
PCRE (PHP <7.3)
This regex matches every IPv4 address with or without 0s before every number. For example: 192.168.1.1 00000000000192.168.00000000000001.01
Submitted by
anonymous
-
4 years ago
2
Simple Best URL Regex Match
PCRE (PHP <7.3)
Best URL Regex to match URL, This is simple and can match 64K of url regex under 20ms Regex Matches All Below and more: https://example.domain http://example.domain...
Submitted by
anonymous
-
4 years ago
2
Почти идеальный фильтр матов
PCRE (PHP <7.3)
Поиск матов в тексте
Submitted by
anonymous
-
4 years ago
1
...
459
460
461
462
463
...
473
NATO Stock Number (with or without NSC)
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