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,320 community submitted regex patterns...
0
Readstat in Brackets
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Apache log2
Python
Read regular expression for log
Submitted by
anonymous
-
8 years ago
0
Find Translations without textdomain
Python
Rexeg to find translations without textdomain. Primarelly made for Wordpress but you can change expression to include different textdomain wrapper. Currently they are set to: __(' TEXT $phpvars or anything else ') I used it in SublimeText to search for lines of PHP code, that's why regex is made f...
Submitted by
cure85
-
8 years ago
0
Latex Chemical formula
Python
Matches chemical formula written with latex, ex: H_2O, C_5H_12, Pb(NO_3)_2
Submitted by
Jingjie Yang
-
8 years ago
0
Latex Chemical Molecule Identifier
Python
Updated: Identifies chemical formulae written with latex
Submitted by
anonymous
-
8 years ago
0
Timestamp
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Any 'abc' string with at least one a and one b
Python
Any 'abc' string with at least one a and one b
Submitted by
anonymous
-
8 years ago
0
Java Map output to JSON String
Python
no description available
Submitted by
anonymous
-
8 years ago
0
SustituciĆ³n de espacios en blanco al final y al principio de una cadena.
Golang
no description available
Submitted by
anonymous
-
8 years ago
0
email
Python
no description available
Submitted by
anonymous
-
8 years ago
0
password
Python
no description available
Submitted by
anonymous
-
8 years ago
0
ID15
Python
no description available
Submitted by
anonymous
-
8 years ago
0
data(yyyy-mm-dd)
Python
no description available
Submitted by
anonymous
-
8 years ago
0
html link finder
Python
For Object Orientated Programming p188 case study. Finds tag links in str representation of html.
Submitted by
anonymous
-
8 years ago
0
Extract module name from python expression
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Lab1 compact
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Lab1 pas compact
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Glide Elision (revised)
Python
no description available
Submitted by
anonymous
-
8 years ago
0
Match smiles in text
Python
Smile spec: 1619 informatics
Submitted by
FeDaniil
-
8 years ago
0
Lab1 pas compact
Python
no description available
Submitted by
anonymous
-
8 years ago
1
...
8
9
10
11
12
...
116
Community Library Entry
3
Regular Expression
Golang
`
^
(?P<scheme>
[^
:
\/
?#
]
+
)
:
(?:
\/\/
)?
(?:
(?:
(?P<login>
[^
:
]
+
)
(?:
:
(?P<password>
[^
@
]
+
)?
)?
@
)?
(?P<host>
[^
@
\/
?#:
]
*
)
(?:
:
(?P<port>
\d
+
)?
)?
)?
(?P<path>
[^
?#
]
*
)
(?:
\?
(?P<query>
[^
#
]
*
)
)?
(?:
#
(?P<fragment>
.
*
)
)?
`
gm
Open regex in editor
Description
Extract URL parts only named capturing groups
Submitted by
dixanms
-
3 years ago