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,560 community submitted regex patterns...
1
Isolate URL in Iframe
ECMAScript (JavaScript)
Will select everything between the double quotes in an Iframe's src tag. Useful for retrieving/replacing the URL.
Submitted by
anonymous
-
9 years ago
1
url
ECMAScript (JavaScript)
url
Submitted by
anonymous
-
9 years ago
1
JavaScript Percentage Validation
ECMAScript (JavaScript)
no description available
Submitted by
rat
-
9 years ago
1
Validate percentage in JavaScript (Working)
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
email validation regex
ECMAScript (JavaScript)
no description available
Submitted by
parul
-
9 years ago
1
Parsing a host from a URL
ECMAScript (JavaScript)
no description available
Submitted by
Alex LaFroscia
-
9 years ago
1
Match URL segment
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Strip Commet
ECMAScript (JavaScript)
Strip comments with /* ... */ or // ...
Submitted by
Willy
-
9 years ago
1
Extract Text Between Specific Pipe Delimited Columns
ECMAScript (JavaScript)
This RegExp extract text between pipe delimited columns specified by the field index you wish to extract. Exmaple: |test1|test2|test3|test4| (?:(+)\|){1} extracts "text1" (?:(+)\|){2} extracts "text2"...
Submitted by
Samuel Davison
-
9 years ago
1
JSFiddle embeded link
ECMAScript (JavaScript)
A regex to match any permutation of JS Fiddles embed URL.
Submitted by
Valtrius
-
9 years ago
1
PersianDate
ECMAScript (JavaScript)
no description available
Submitted by
Nasehi
-
9 years ago
1
Match JESSSIONID
ECMAScript (JavaScript)
Match JESSSION ID for Netscaler HTTP.RES.SET_COOKIE.REGEX_SELECT(re/JSESSIONID=[A-Za-z\.A-Za-z0-9]*/).TYPECAST_COOKIE_T.VALUE(0)
Submitted by
Francesco Fra
-
9 years ago
1
Property Search
ECMAScript (JavaScript)
no description available
Submitted by
Churanos
-
9 years ago
1
simple IPv6 check
ECMAScript (JavaScript)
This performs a non-rigorous validation of IPv6 addresses. Should be used before handing off the value to a better parser/validator.
Submitted by
anonymous
-
9 years ago
1
Button Online State Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Units RegExp
ECMAScript (JavaScript)
no description available
Submitted by
Javier Matusevich
-
9 years ago
1
Library, New Books
ECMAScript (JavaScript)
Used on "http://adi.sunyconnect.suny.edu:4610/adi_new_book.html" to get the URL, Call Number, Title, and Author of all the new books listed.
Submitted by
Daniel Foote
-
9 years ago
1
^([A-Z]{3})$
ECMAScript (JavaScript)
^([A-Z]{3})$
Submitted by
anonymous
-
9 years ago
1
Chat command capture
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Convert array.forEach for IE8
ECMAScript (JavaScript)
A regex and replace pattern pair for replacing array.forEach(func) with angular.forEach(array, func) This is useful because IE8 does not support array.forEach.
Submitted by
anonymous
-
9 years ago
1
...
118
119
120
121
122
...
178
Community Library Entry
0
Regular Expression
Python
r"
\$
[
a
-
zA
-
Z0
-
9
\-
_
]
+
[
]
*
:
[
]
*
[
a
-
zA
-
Z0
-
9
\-
_
]
+
"
Open regex in editor
Description
find every Sass variabile assignation
Submitted by
Giorgia Bonini
-
9 years ago