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 9,520 community submitted regex patterns...
0
Extract domain from url
PCRE (PHP <7.3)
From native squid logs, I retrieve url with http* or not. I use the regex to extract the top domain from the url and store it into a variable
Submitted by
anonymous
-
6 years ago
0
Obtener tipo y variable para typescript
PCRE (PHP <7.3)
Con las expressioón regular puedo utilizar los reemplazos (VSCODE )para a partir de una interfaz construir un modelo de backbone con get y set public set $1(value) { this.set('$1', value); } public get $1()$2 { return this.get('$1'); }
Submitted by
anonymous
-
6 years ago
0
Sharps containers
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
text in url between //
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
IP and Timestamp extractor
PCRE (PHP <7.3)
extracts IP and Timestamp from log file for further processing.
Submitted by
anonymous
-
6 years ago
0
ChatFlow String Finder
PCRE (PHP <7.3)
Use ChatFlow
Submitted by
anonymous
-
6 years ago
0
instagram display url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
hackerrank
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
yyyy-mm
PCRE (PHP <7.3)
will validate year month format. YYYY-MM
Submitted by
Shyamin Ayesh
-
6 years ago
0
HTTP or HTTPs URL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Java Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Jenkins Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Jenkins Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Neto Log Line Format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
numbers with decimals
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
general direction
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
direccion calle
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
direccion avenida
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
direccion plaza
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
texto hasta 6 palabras - solo letras
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
112
113
114
115
116
...
476
Community Library Entry
2
Regular Expression
Python
r"
[
\w
'
-
.
]
+
\w
|
[
\w
'-
]
+
\s
*
"
Open regex in editor
Description
Matches words without external punctuation but with internal punctuation.
Submitted by
anonymous
-
9 years ago