Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
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)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 18,300 community submitted regex patterns...
0
common
Created
·
2018-04-06 12:29
Flavor
·
ECMAScript (JavaScript)
these are my common regexp
Submitted by
muma
0
Match filenames New
Created
·
2018-04-06 13:57
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
1
Created
·
2018-04-06 15:48
Flavor
·
PCRE (Legacy)
1
Submitted by
anonymous
0
Simple lookahead
Created
·
2018-04-07 14:02
Flavor
·
PCRE (Legacy)
https://docs.racket-lang.org/guide/Looking_Ahead_and_Behind.html
Submitted by
anonymous
0
PO Box# Parser
Created
·
2018-04-07 20:57
Flavor
·
Python
Parse the box number out of a PO or PO Box or Postal Box or Box
Submitted by
anonymous
0
Active Directory - CN Extraction
Created
·
2018-04-09 11:01
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Sass: ensure default!
Created
·
2018-04-09 14:40
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Last occurence of a specified word in sentance
Created
·
2018-04-09 21:30
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Path Manipulation (Input Validation and Representation, Data Flow)
Created
·
2018-04-10 08:29
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Check for lat,lng coordinades
Created
·
2018-04-10 16:10
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Default Nginx Logs
Created
·
2018-04-10 19:36
Flavor
·
Python
no description available
Submitted by
anonymous
0
Guia 1 Parte 5
Created
·
2018-04-10 23:33
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
URL path&query
Created
·
2018-04-12 10:42
Flavor
·
PCRE (Legacy)
no description available
Submitted by
Rand01ph
0
Weather
Created
·
2018-04-12 09:32
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
0
Find . between tags
Created
·
2018-04-12 09:38
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
PHPDoc tags extraction
Created
·
2018-04-13 08:32
Flavor
·
PCRE (Legacy)
Extract descriptions and tags in a PHPDoc comment bloc Some tags are customized for my usage, but can be removed or replaced. /!\ multiline descriptions must be cleaned after capture to remove the spaces and '*' at the start of each line after the first.
Submitted by
olivier.parmentier
0
IPV6 validator
Created
·
2018-04-12 16:50
Flavor
·
PCRE (Legacy)
no description available
Submitted by
olivier.parmentier
0
ips da empresa
Created
·
2018-04-12 17:18
Flavor
·
PCRE (Legacy)
ips da empresa
Submitted by
anonymous
0
telephone number
Created
·
2018-04-13 06:18
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Deeplink without protocol
Created
·
2018-04-13 14:47
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
Previous page
1
…
148
149
150
151
152
…
915
Next page
Community Library Entry
1
Regular Expression
Created
·
2015-11-06 15:52
Flavor
·
PCRE (Legacy)
/
^
(
(
(
\d
{0,16}
)
\.
\d
{1,16}
)
|
(
[
0
-
9
]
{1}
)
|
(
[
1
-
9
]
{1}
\d
{0,15}
)
|
[
1
-
9
]
{1,3}
(
,
\d
{3}
){1,}
|
(
(
[
1
-
9
]
{0,3}
,
(
\d
{1,3}
)
)*(
\.
\d
{1,16}
)
)
|
(
[
1
-
9
]
{1,3}
,
\d
{3}
)
)
$
/
gm
Open regex in editor
Description
any int, any int with decimal any int with comma delimited any int with comma delimited and decimal
Submitted by
amaroyche