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,940 community submitted regex patterns...
1
PHP Class Capture Groups from symbol string for Class, Namespace, Operation (Mutator or Accessor), Target and Method Names
PCRE2 (PHP >=7.3)
The is helpful for parsing the symbolic reference of a PHP class object for validation or just determining the type and target for the operator. The expression is intended for working with classes and class methods, so the value on the right of the Paamayim Nekudotayim :: will alway be regarded as ...
Submitted by
Jacob Canote
-
4 years ago
(Last modified 4 years ago)
0
Hee haw
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
p tags no a
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
p with a
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Row
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Ignore string not = 16 chars
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Blend FLow Filter
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
omzettingstabel1
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
H tags
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Match serial number with word
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
fint account
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Match Year Month Day onto file name
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Automatically removes any CSS property that doesn't affect the border, background, color, or shadow
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
find and replace groups
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
obtener valor dentro de llaves
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Swap colon for semicolon in timecode
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Kodi extract image path from thumbnail
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Kodi favorite matcher
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
심차장님 정규식
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
-2
Eide Chrysler New Goal
PCRE2 (PHP >=7.3)
no description available
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
1
...
144
145
146
147
Community Library Entry
1
Regular Expression
Python
r"
^
(
http
[
s
]
?
:
\/\/
)?
(
[^
:
\/
\s
]
+
)
(
:
(
[^
\/
]
*
)
)?
(
\/
\w
+
\.
)*
(
[^
#?
\s
]
+
)
(
\?
(
[^
#
]
*
)
)?
(
#
(
.
*
)
)?
$
"
i
Open regex in editor
Description
Break a URL into parts: protocol url path get parameters hash
Submitted by
Dale O'Brien
-
10 years ago