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,500 community submitted regex patterns...
0
Match odd amount of backslashes.
Python
This regular expression will match anytime in a string where an odd amount of backslashes directly following eachother are present.
Submitted by
anonymous
-
5 years ago
0
FB match group
Golang
no description available
Submitted by
anonymous
-
5 years ago
0
Extract value of time from *.csv file name
Python
Works for both positive and negative exponent Works for both lowercase exponent (e) and uppercase exponent (E)
Submitted by
anonymous
-
5 years ago
0
Extract Abaqus file/ Nastran file node number and mapped temperature or pressure value
Python
Process: Temperature/ pressure data generated by CFD software StarCCM+ Temperature/ pressure data extracted during runtime by StarCCM+ in form of *.csv files Data extracted every x timesteps (x = integer value >= 1) Data mapping performed using "tabular data mapper" tool in StarCCM+. Algorithm used...
Submitted by
anonymous
-
5 years ago
0
Chilean phone number (mobile)
Python
phone number with country cod. +56 (chile)
Submitted by
anonymous
-
5 years ago
0
Lookahead and lookbehind
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor block title
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor source block indicator
Python
no description available
Submitted by
anonymous
-
5 years ago
0
asciidoctor header id
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Credit_IPs
Python
no description available
Submitted by
anonymous
-
5 years ago
0
FAR RegEx
Python
no description available
Submitted by
anonymous
-
5 years ago
0
FAR RegEx
Python
no description available
Submitted by
anonymous
-
5 years ago
0
IP address
Python
no description available
Submitted by
anonymous
-
5 years ago
0
匹配段落
Python
段落匹配
Submitted by
anonymous
-
5 years ago
0
NGINX Error Log Format
Python
A regular expression to parse NGINX error logs.
Submitted by
anonymous
-
5 years ago
0
gcodetest1
Python
no description available
Submitted by
anonymous
-
5 years ago
0
nytimes project
Python
str = str[:-1] split on "/" if "/" in str
Submitted by
anonymous
-
5 years ago
0
asicseer
Python
##91.101.203.129.generic-hostname.arrownet.dk\StainedFilthyBareAvians.txt using this guide: https://asicseer.com/page/kb#writing-config global poolname1 sha.eobot.com:3333 global username1 eobot.1930455 global poolpass1 x...
Submitted by
anonymous
-
5 years ago
0
asicseer
Python
##91.101.203.129.generic-hostname.arrownet.dk\StainedFilthyBareAvians.txt using this guide: https://asicseer.com/page/kb#writing-config global poolname1 sha.eobot.com:3333 global username1 eobot.1930455 global poolpass1 x...
Submitted by
anonymous
-
5 years ago
0
url match
Golang
url match
Submitted by
anonymous
-
5 years ago
1
...
20
21
22
23
24
...
125
Community Library Entry
8
Regular Expression
Python
r"
^
(
http
[
s
]
?
:
)+
\/\/
(
[^
:
\/
\s
]
+
)
(
[^
#?
\s
]
+
)
\?
(
[^
#
]
*
)?
(
#
.
*
)?
$
"
i
Open regex in editor
Description
This is simplified from my last submission.
Submitted by
Dale O'Brien
-
10 years ago