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 18,000 community submitted regex patterns...
1
NS:Task2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Extract domain from URL
PCRE (PHP <7.3)
'www.xakep.ru' === xakep 'http://github.com/carbonfive/raygun' === github 'https://www.cnet.com' === cnet 'xewveqmwcz90sl64.co/' === xewveqmwcz90sl64
Submitted by
anonymous
-
4 years ago
1
Valid URL RegEx
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
FIND NUMBERS IN STRING
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Group 1 und Group 2 erkennen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Pesquisa palavras inicio e fim
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Number with format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Account Password Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
token
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Get table rows
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Match table head and body
Python
no description available
Submitted by
anonymous
-
4 years ago
1
URL Domain Extractor
ECMAScript (JavaScript)
Extracts and returns the domain name from a given URL.
Submitted by
anonymous
-
4 years ago
1
Domain from URL
PCRE (PHP <7.3)
Matches everything before after // or www and before a period. If needed, replace the matched elements with blanks.
Submitted by
anonymous
-
4 years ago
1
FR Anti Ancient Gene Search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
expression for mike
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Case IDs and whitespace
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Log Scan Sample
PCRE (PHP <7.3)
no description available
Submitted by
sdf
-
4 years ago
1
Custom IFrame SRC Grabber
PCRE2 (PHP >=7.3)
no description available
Submitted by
Moep
-
4 years ago
(Last modified 4 years ago)
1
convert package.json to single line of library names without versions
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
1
for loop with customfield,
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
253
254
255
256
257
...
900
Community Library Entry
3
Regular Expression
Python
r"
(
^
http
(
s
)?
://
)?
(
(
www
|
en-es
|
en-gb
|
secure
|
beta
|
ro
|
www-origin
|
en-ca
|
fr-ca
|
lt
|
zh-tw
|
he
|
id
|
ca
|
mk
|
lv
|
ma
|
tl
|
hi
|
ar
|
bg
|
vi
|
th
)
\.
)?
twitch
.
tv/
(?!
directory
|
p
|
user/legal
|
admin
|
login
|
signup
|
jobs
)
(?P<channel>
\w
+
)
"
gm
Open regex in editor
Description
Can grab all kinds of valid twitch URLs.
Submitted by
Mio
-
10 years ago