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,040 community submitted regex patterns...
0
Australian Landline (area code or no areacode), priority (13, 1300) and freecall (1802,1800) business phone numbers
PCRE (PHP <7.3)
Supports: Priority and local call numbers - 13 XX XX, 1300 XXX XXX, 13XXXX, 1300 XX XX XX, 1300 XXXXXX, 130XXXXXX Freecall special numbers - 1802 XXX, 1802XXX Freecall numbers - 1800 XX XX XX, 1800 XXX XXX, 1800XXXXXX, 1800 XXXXXX landline numbers (no area code) - XXXX-XXXX, XXXXXXXX landline (areac...
Submitted by
Kool kat
-
7 years ago
0
test
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
heat - elif
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
heat - if
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
heat - variable
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
vnc4 match
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Filter Entry from QueryString
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
safe_text
PCRE (PHP <7.3)
text that is resonably safe
Submitted by
anonymous
-
7 years ago
0
Gateway plugins filename
Golang
This regular expression is used to validated the filename of Gateway plugins.
Submitted by
Julien BREUX
-
7 years ago
0
Not Full Amount with kilo, million, billion
ECMAScript (JavaScript)
Valid: 0.00 123.12k 123,123,123.12m 123,123,123,123.00b ...
Submitted by
Benji W J YANG
-
7 years ago
1
Full amount, with comma, 2 decimal places
ECMAScript (JavaScript)
Valid: 0.00 123.12 123,123,123.12 123,123,123,123.00 ...
Submitted by
Benji W J YANG
-
7 years ago
1
Percentage with 2 decimal places
ECMAScript (JavaScript)
Valid: +100.00% -100.00% +2.00% -22.00% +2.99%...
Submitted by
Benji W J YANG
-
7 years ago
0
NoC
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Hyphenated2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Hyphenated1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Soubisha Password
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
js functions
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
WGS84 Validation
ECMAScript (JavaScript)
RE to validate the format of a WGS84 datum coordinates string.
Submitted by
anonymous
-
7 years ago
0
container number
PCRE (PHP <7.3)
maritime container number
Submitted by
anonymous
-
7 years ago
1
...
536
537
538
539
540
...
902
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
[
0
-
9
]
{1,3}
(
(
\,
[
0
-
9
]
{3}
)*
)
\.
[
0
-
9
]
{2}
$
/
gm
Open regex in editor
Description
Valid: 0.00 123.12 123,123,123.12 123,123,123,123.00
Invalid: 12,1234,123.12 1234,123.12
Submitted by
Benji W J YANG
-
7 years ago