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 2,420 community submitted regex patterns...
0
Parse Portuguese Frequency dictionary
Python
The following is a dictionary of 4991 portuguese words ordered by frequency. I need the file to have just number of line and word like the following 11 lines of example. So I need to delete all lines that don't start with a number and delete everything after number and word. Also delete all lines wi...
Submitted by
alfacent
-
10 years ago
1
check phone number(Taiwan)
Python
If pattern match, then this number probably is a phone number in Taiwan.
Submitted by
Assalin
-
10 years ago
-2
python bracketed text
Python
why doesn't this match text in brackets?
Submitted by
anonymous
-
10 years ago
-1
text beetween text
Python
no description available
Submitted by
karol
-
10 years ago
1
Alternatvie Country Code Capture
Python
no description available
Submitted by
Branden
-
10 years ago
-1
Alternative With Capture Groups
Python
Capture alternative items matching end of lines country codes
Submitted by
Branden
-
10 years ago
1
test
Python
test
Submitted by
test
-
10 years ago
1
domain from full url
Python
no description available
Submitted by
anonymous
-
10 years ago
1
t-sql batch script parser
Python
Splits t-sql script into separated commands. useful for executing with adocommand object
Submitted by
kutsoff
-
10 years ago
-2
match only words consisting of 3 repeated letters, e.g. lllkkk
Python
no description available
Submitted by
kali
-
10 years ago
1
Find #'s
Python
no description available
Submitted by
anonymous
-
10 years ago
0
Cakephp smarty translation extract
Python
Extracting all {__("content")} from cakephp .tpl files
Submitted by
Yuks
-
10 years ago
0
get youtube vid ID
Python
match #2
Submitted by
parzivail
-
10 years ago
1
GDI Prüfung 20.01.2012
Python
no description available
Submitted by
anonymous
-
10 years ago
1
RFC 3936
Python
Parses URIs according to RFC3936
Submitted by
anonymous
-
10 years ago
0
1
Python
no description available
Submitted by
anonymous
-
10 years ago
-2
five word capture
Python
no description available
Submitted by
anonymous
-
10 years ago
2
Capture 5 words either side of a match string
Python
no description available
Submitted by
anonymous
-
10 years ago
1
indentation
Python
no description available
Submitted by
z
-
10 years ago
(Last modified a year ago)
1
url regex
Python
no description available
Submitted by
catwooman
-
10 years ago
1
...
116
117
118
119
120
121
Community Library Entry
2
Regular Expression
.NET 7.0 (C#)
@"
^
(
(
\+
?
(
61
\W
?
4
)
)
|
(
04
)
)
\W
?
(
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{3}
\W
[
0
-
9
]
{3}
)
|
(
[
0
-
9
]
{8}
)
|
(
[
0
-
9
]
{4}
\W
[
0
-
9
]
{4}
)
|
(
[
0
-
9
]
{2}
\W
[
0
-
9
]
{6}
)
)
$
"
Open regex in editor
Description
validates against multiple common formats
Submitted by
anonymous
-
2 years ago