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 5,060 community submitted regex patterns...
0
Validar identificación
PCRE2 (PHP >=7.3)
Solo se admiten numeros, sin espacios al inicio o fin
Submitted by
anonymous
-
2 years ago
0
Search for URL
PCRE2 (PHP >=7.3)
Searches the string for valid URLs. Includes HTTP, HTTPS, and localhost with it's port.
Submitted by
Evan Wilson
-
2 years ago
0
hyperlinks
Python
collect information from web links
Submitted by
anonymous
-
2 years ago
0
SSN Finder
PCRE2 (PHP >=7.3)
([0-7]\d{2}(" "|-|\.)?\d{2}(?(2)(" "|-|\.))\d{4}) Finds the first number as 0-7 then matches the next two digits Will check what delimitator (group 2) if any is used finds two digits if a delimitator is used - if it is then use one here, if not then don't (prevents US based zip code + 4 from getti...
Submitted by
ACCS
-
2 years ago
0
Telephone
PCRE2 (PHP >=7.3)
\+7\s\(\d{3}\)\s\d{3}\s\d{2}\-\d{2}
Submitted by
anonymous
-
2 years ago
0
Aurora SMS Log Parser
Python
For personal use in my project.
Submitted by
sn3kdev
-
2 years ago
0
UTC+
PCRE2 (PHP >=7.3)
Match {space}UTC+{number}
Submitted by
yedrup
-
2 years ago
0
bs-icons
PCRE2 (PHP >=7.3)
dwa
Submitted by
anonymous
-
2 years ago
0
eval expression
Python
expression will create from example: 2 + 1 + 3 * 510.3 - 50 * (20 - 29 * 2) this: 2,+,1,+,3,,510.3,-,50,,(20,-,29,*,2)
Submitted by
NotMEE12
-
2 years ago
0
Σ = {0, 1}. Cadenas de longitud impar ≥ 3 formadas por ceros y unos alternados.
PCRE2 (PHP >=7.3)
Cadenas de longitud impar ≥ 3 formadas por ceros y unos alternados.
Submitted by
JCMM
-
2 years ago
0
ip address
Java 8
ip address regex
Submitted by
shyam
-
2 years ago
0
log filter 01
PCRE2 (PHP >=7.3)
expression for removing unnecessary information
Submitted by
ndeans
-
2 years ago
0
Device_name
PCRE2 (PHP >=7.3)
doesn't process road warrior or dubi location dubii missing interface?
Submitted by
Keith
-
2 years ago
0
my_device_usage
PCRE2 (PHP >=7.3)
usage
Submitted by
Keith
-
2 years ago
0
Regex for matching French Phone Numbers
PCRE2 (PHP >=7.3)
This is an expression that will match French Phone numbers You can modify this expression to help you match your needs.
Submitted by
anonymous
-
2 years ago
0
PAN Number (India)
PCRE2 (PHP >=7.3)
Format of PAN Number (issued in India)
Submitted by
anonymous
-
2 years ago
0
URL filter out of a shell script file, inc URLs with ";"
PCRE2 (PHP >=7.3)
URL filter out of a shell script file, inc URLs with ";" in the POST part
Submitted by
MaxPeal
-
2 years ago
0
Get Filename from Content-Disposition Header
PCRE2 (PHP >=7.3)
Extract Download Filename from Content-Disposition Header
Submitted by
thegass
-
2 years ago
0
email
PCRE2 (PHP >=7.3)
validate email
Submitted by
anonymous
-
2 years ago
0
Find valid SAS names
PCRE2 (PHP >=7.3)
https://www.sfu.ca/sasdoc/sashtml/lrcon/z0998953.htm#z0998951
Submitted by
ABANTR
-
2 years ago
1
...
236
237
238
239
240
...
253
Community Library Entry
0
Regular Expression
Python
r"
\w\s
(?P<type>
\S
+
)
\s
(?P<name>
\S
+
)
\s
(?P<model>
\S
+
)
\s
(?P<code>
\S
+
)
\s
(?P<serial_number>
\S
+
)
\s
(?P<in_charge>
\S
+
\s\S
+
\s\S
+
)
"
g
Open regex in editor
Description
Gets several strings and makes a list of data attributes in a formatted way
Submitted by
SevebFeet
-
2 years ago