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,760 community submitted regex patterns...
0
Hightlight pipe regex
PCRE2 (PHP >=7.3)
A regex to find a searchQuery inside html But not: inside tag inside tag indide href of tag
Submitted by
Robair
-
2 years ago
0
Script Tag Removal.
PCRE2 (PHP >=7.3)
Removes "" tags from plain text notes.
Submitted by
anonymous
-
2 years ago
0
Javascript HTTP URL Validation
PCRE2 (PHP >=7.3)
Use to validate basic website URLs with or without http://. I took bits and pieces of other regexes I found and compiled into one that worked well for my purposes.
Submitted by
Daniel Ecker
-
2 years ago
0
unit selector regex
PCRE2 (PHP >=7.3)
This regex can be used to select SI units of gallon, litres, kilograms, kilometres, pounds.
Submitted by
anonymous
-
2 years ago
0
REGEX yt-dlp ID
PCRE2 (PHP >=7.3)
Get ID from plain text fromm yt-dlp
Submitted by
anonymous
-
2 years ago
0
XTrim
PCRE2 (PHP >=7.3)
Remove spaces at the beginning and end of a sentence. It also replaces N consecutive spaces with a single one.
Submitted by
abrittaf
-
2 years ago
0
Regex Tutorials CodeAmooz.net
PCRE2 (PHP >=7.3)
Regex Tutorials CodeAmooz.net
Submitted by
anonymous
-
2 years ago
0
letter-space-number.js
PCRE2 (PHP >=7.3)
Javascript piscine
Submitted by
erik044
-
2 years ago
0
Filter Hashtags and Links in a string
PCRE2 (PHP >=7.3)
Filter Hashtags and Links in a string
Submitted by
Akali
-
2 years ago
0
Filter Hashtags in a string
PCRE2 (PHP >=7.3)
Filter Hashtags in a string
Submitted by
Akali
-
2 years ago
0
Filter Links in a string
PCRE2 (PHP >=7.3)
Filter Links in a string
Submitted by
Akali
-
2 years ago
0
Filter Vietnamese Hashtags in a string
PCRE2 (PHP >=7.3)
Filter Vietnamese Hashtags in a string
Submitted by
Akali
-
2 years ago
(Last modified 2 years ago)
0
Cisco APIC extractions
PCRE2 (PHP >=7.3)
Cisco APIC extractions suitable for using as a field extraction in Splunk
Submitted by
j.P. Pasnak,CD
-
2 years ago
0
address
PCRE2 (PHP >=7.3)
address
Submitted by
anonymous
-
2 years ago
0
Test (itay)
PCRE2 (PHP >=7.3)
Test (itay)
Submitted by
Itaye
-
2 years ago
0
Class A private IP address range
PCRE2 (PHP >=7.3)
https://www.ibm.com/docs/en/networkmanager/4.2.0?topic=translation-private-address-ranges
Submitted by
artdiniz
-
2 years ago
0
Class C private IP address range
PCRE2 (PHP >=7.3)
https://www.ibm.com/docs/en/networkmanager/4.2.0?topic=translation-private-address-ranges
Submitted by
artdiniz
-
2 years ago
0
Email Validation
PCRE2 (PHP >=7.3)
Validates email
Submitted by
anonymous
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
Mail format verification
PCRE2 (PHP >=7.3)
This piece of regex is a simple format verification for email addresses. It accepts only most common email addresses and it favors simplicity over exhaustivity, but should work for 99% of the cases. Based on this Stackoverflow thread : https://stackoverflow.com/a/60137352/14705619
Submitted by
rnorm
-
2 years ago
1
...
123
124
125
126
127
...
138
Community Library Entry
0
Regular Expression
Python
r"
(?P<nom>
^
[
\w\d
]
?
)
\/
(?P<latfield>
(?P<latflag>
[
NS
]
)
(?P<latval>
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
)
\/
(?P<lonfield>
(?P<lonflag>
[
EW
]
)
(?P<lonval>
[
01
]
?
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
$
)
"
s
Open regex in editor
Description
Text fields describing a name and positions
Submitted by
bruno.piguet@meteo.fr
-
11 years ago