Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Social
Join the Discord community!
Follow me on twitter!
Send me an email
Donate
Donate
Donate through Paypal
Become a Github Sponsor
Info
Info
Find out what's new!
RegEx101 Wiki
Report bugs or make suggestions
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Community Patterns
Community Patterns
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Get help on Discord
Get help on IRC
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 (C#)
Rust
Sponsors
Community Patterns
Search among 2,280 community submitted regex patterns...
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Find between a space and a char/string
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-04 17:51
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Find between a space and a char/string with lookahead
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-04 17:52
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Find a word before any symbol
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-05 05:06
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
argit GitHub remote
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-06 17:35
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Samasource url path - PML extraction
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-06 19:54
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Samasource url path - PML extraction
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-06 20:11
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Tokenize japanese sentences
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-11 17:25
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Dividir participantes Tesis Laura
Python
Los participantes siempre son tres caracteres mayúsculas entre ` y : , por tanto: \\[A-Z]{3}:. Sin embargo, como la función separate de r elimina el elemento separador, que es el resultado del regex, hay que usar un positive lookbehind (?<=...)` para que use como separador lo que sigue a continuació...
Submitted by
anonymous
-
5 years ago
2018-08-12 11:36
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
find all while ignoring a set of patterns
Python
This can be changed to find all characters upto a specific pattern as well by changing the \b at the start to a simple ^. This is useful if you want to limit your regex searches in a manner such that two pattern cases do not overlap (as regex does not currently handle overlap of cases when you chai...
Submitted by
anonymous
-
5 years ago
2018-08-13 12:10
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Indicador Diario
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-14 21:32
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Incorporation
Python
Finds different variations of "Incorporation", e.g.: Inc, Inc. etc
Submitted by
anonymous
-
5 years ago
2018-08-16 17:51
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Die roll parser
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-20 21:35
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
File extension
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-22 09:35
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Folder path
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-22 09:36
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
File name without extension
Python
further editing is required in code to get the filename without extension
Submitted by
anonymous
-
5 years ago
2018-08-22 09:37
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Date extraction
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-08-30 13:04
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Some sql beauty
Python
no description available
Submitted by
anonymous
-
5 years ago
2018-09-05 13:10
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Missing Ementas
Python
Search for missing 'ementas'.
Submitted by
anonymous
-
5 years ago
2018-09-05 18:51
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
latex equation search
Python
recherche d'équation latex
Submitted by
anonymous
-
5 years ago
2018-09-06 10:26
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
equation latex en bloc
Python
recherche les blocs d'équations latex délimitées avec le $$
Submitted by
anonymous
-
5 years ago
2018-09-06 15:39
1
...
87
88
89
90
91
92
93
...
114
FirstVar11
0
0 upvotes, 0 downvotes (score 0%) (You must be signed in to vote)
Regular Expression
Python
r"
\d
{1,}
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
)
=
(
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
(
\+
|
\-
|
\*
|
\/
)
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
|
\-
?
(
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z0
-
9
]
{0,15}
|
[
0
-
9
]
{1,}
)
)
$
"
gm
Open regex in editor
Description
Loading markdown...
Submitted by
anonymous
-
4 years ago
2020-02-29 14:48