Regular
Expressions
101
Please wait while the app is loading...
Please enable JavaScript to use this web application.
Regular
Expressions
101
@regex101
Donate
Sponsor
Contact
Bug Reports & Feedback
Wiki
What's new?
What's new?
Loading content...
Close
Regex Editor
Regex Editor
Regex Library
Regex Library
Account
Account
Regex Quiz
Regex Quiz
Settings
Settings
Live Help
Live Help
Order By
Most Recent
Most Points
Fewest Points
Filter by Flavor
PCRE2
PCRE
ECMAScript
Python
Golang
Java
.NET
Sponsors
All your environment variables, in one place
Library entries
Search library
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
Convert array.forEach for IE8
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
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
URL
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
Check delimited email list validity
Validates list of email addresses separated by , or ; and possibly spaces. Capture groups will return only the first and last email captured.
Submitted by
Kevin Rák
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
test
test
Submitted by
test
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
Search number in comma separated list
Search each occurence of one number in a comma separated list string
Submitted by
Tommaso frazzetto
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
shift+click url() parser
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
contact email address validation
validate contact email clientside in JS
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
contact email validator updated
contact email validator updated for dash and number in domain TLD
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
matching inline note
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
---
Submitted by
rs
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
compile -> link replace
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
gasmeter
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
dXNpbmcgU3lzdGV.GtLklPOw0KdXNpbmcgU3lzdGVtOw0KDQpjbGFzcyBQcm9
no description available
Submitted by
anonymous
-
7 years ago
1
3 upvotes, 2 downvotes (60% like it) (You must be signed in to vote)
javascript
word matcher
no description available
Submitted by
Cengizism
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
Simple math term parser
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
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
read zip and location from string
exact 5 digits followed by string (city)
Submitted by
moritz
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
IME14
Remove RJN.P and LALT.OQ
Submitted by
HZ
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
Replace TODOS in JetBrains IntelliJ products
arised while creating a build gulp task
Submitted by
David Enke <post@davidenke.de>
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
asmblah/parsing: Matching markdown code fences
no description available
Submitted by
anonymous
-
7 years ago
1
1 upvotes, 0 downvotes (100% like it) (You must be signed in to vote)
javascript
AD12345678
Text with prefix AD and postfix 8 munbers only
Submitted by
pratheeshps
-
7 years ago
1
...
136
137
138
139
140
141
142
...
185
Regular Expression for Date
Vote
1
2 upvotes, 1 downvotes (67% like it) (You must be signed in to vote)
Regular Expression
javascript
/
^
(?:
^
(?:
(?:
(?:(?:(?:
0
?
[
13578
]
|
1
[
02
]
)
[
-
/.
]
31
)|
(?:(?:
0
?
[
13
-
9
]
|
1
[
0
-
2
]
)
[
-
/.
]
(?:
29
|
30
)))
[
-
/.
]
(?:
1
[
6
-
9
]
|
[
2
-
9
]
\d
)
\d
{2}
)
|
(?:
0
?
2
[
-
/.
]
29
[
-
/.
]
(?:(?:(?:
1
[
6
-
9
]
|
[
2
-
9
]
\d
)
(?:
0
[
48
]
|
[
2468
]
[
048
]
|
[
13579
]
[
26
]
)|
(?:(?:
16
|
[
2468
]
[
048
]
|
[
3579
]
[
26
]
)
00
)))
)
|
(?:
(?:
0
?
[
1
-
9
]
)
|
(?:
1
[
0
-
2
]
)
)
[
-
/.
]
(?:
0
?
[
1
-
9
]
|
1
\d
|
2
[
0
-
8
]
)
[
-
/.
]
(?:
(?:
1
[
6
-
9
]
|
[
2
-
9
]
\d
)
\d
{2}
)
)
$
)
$
/
Open regex in editor
Description
Loading markdown...
Submitted by
Priyanka Khadilkar
- 9 years ago