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 3,660 community submitted regex patterns...
1
dXNpbmcgU3lzdGV.GtLklPOw0KdXNpbmcgU3lzdGVtOw0KDQpjbGFzcyBQcm9
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Simple math term parser
ECMAScript (JavaScript)
This regex can be used for parsing simple math terms. You can use this operations: + - * / For example: 1+2 1.9/8.9 -810.123-98...
Submitted by
anonymous
-
9 years ago
1
read zip and location from string
ECMAScript (JavaScript)
exact 5 digits followed by string (city)
Submitted by
moritz
-
9 years ago
1
IME14
ECMAScript (JavaScript)
Remove RJN.P and LALT.OQ
Submitted by
HZ
-
9 years ago
1
Replace TODOS in JetBrains IntelliJ products
ECMAScript (JavaScript)
arised while creating a build gulp task
Submitted by
David Enke <post@davidenke.de>
-
9 years ago
1
asmblah/parsing: Matching markdown code fences
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
AD12345678
ECMAScript (JavaScript)
Text with prefix AD and postfix 8 munbers only
Submitted by
pratheeshps
-
9 years ago
1
camera
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Regular expression to Vaildate an Email Address
ECMAScript (JavaScript)
The regular expression uses the basic email address syntex, ulr rules form validating an email address. Watch the complete tutorial on youtube : https://www.youtube.com/watch?v=H6WvPfh7OYw
Submitted by
Rayees Ahmed Shaikh
-
9 years ago
1
Basic URL
ECMAScript (JavaScript)
Matches basic URLs and fails on things that aren't
Submitted by
anonymous
-
9 years ago
1
meraki device name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
moj test regex
ECMAScript (JavaScript)
regex sa vezbi
Submitted by
Mladen
-
9 years ago
1
dni con letra
ECMAScript (JavaScript)
dni con letra
Submitted by
cda
-
9 years ago
1
UK Postal Code
ECMAScript (JavaScript)
Match UK Postal Code
Submitted by
Michael R
-
9 years ago
1
Can't be numeric only
ECMAScript (JavaScript)
It could be alphanumeric but should not be numeric only
Submitted by
anonymous
-
9 years ago
1
gps 103
ECMAScript (JavaScript)
gps103 gprs communication
Submitted by
anonymous
-
9 years ago
1
FDQN
ECMAScript (JavaScript)
no description available
Submitted by
Pratheesh ps
-
9 years ago
1
Get Email Address from string
ECMAScript (JavaScript)
no description available
Submitted by
Google
-
9 years ago
1
C# Generic Parameters
ECMAScript (JavaScript)
no description available
Submitted by
andy cunningham
-
9 years ago
1
match 8 character device name with restrictions
ECMAScript (JavaScript)
Charset is: 0 1 2 3 4 5 6 7 8 9 - _ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s t u v w x y z Rules for string:...
Submitted by
anonymous
-
9 years ago
1
...
124
125
126
127
128
...
183
Community Library Entry
3
Regular Expression
Golang
`
^
(?P<scheme>
[^
:
\/
?#
]
+
)
:
(?:
\/\/
)?
(?:
(?:
(?P<login>
[^
:
]
+
)
(?:
:
(?P<password>
[^
@
]
+
)?
)?
@
)?
(?P<host>
[^
@
\/
?#:
]
*
)
(?:
:
(?P<port>
\d
+
)?
)?
)?
(?P<path>
[^
?#
]
*
)
(?:
\?
(?P<query>
[^
#
]
*
)
)?
(?:
#
(?P<fragment>
.
*
)
)?
`
gm
Open regex in editor
Description
Extract URL parts only named capturing groups
Submitted by
dixanms
-
3 years ago