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,620 community submitted regex patterns...
0
DS002 - Get Text Fields
ECMAScript (JavaScript)
Gets all the text fields from the PDF Files
Submitted by
anonymous
-
2 years ago
0
DS002 - Get Project Number
ECMAScript (JavaScript)
Gets the project number from the extracted text fields from the PDF files.
Submitted by
anonymous
-
2 years ago
0
Regex Number Process
ECMAScript (JavaScript)
Regex of matches number process BR.
Submitted by
RAFAELLA CINTRA
-
2 years ago
(Last modified 2 years ago)
0
Validation code FETLOCK pt-br
ECMAScript (JavaScript)
Validação de código de barras boleto padrão "FEBRABAN - Federação Brasileira de Bancos".
Submitted by
Rafaella Cintra
-
2 years ago
(Last modified a year ago)
0
Mask to FETLOCK pt-br
ECMAScript (JavaScript)
Mask to fetlock pt-br. 00000.00000 00000.000000 00000.000000 0 00000000000000
Submitted by
Rafaella Cintra
-
2 years ago
(Last modified 2 years ago)
0
Mask currency default
ECMAScript (JavaScript)
mask currency default
Submitted by
Rafaella Cintra
-
2 years ago
0
Дайвинчик — входящий лайк
ECMAScript (JavaScript)
https://github.com/VityaSchel/daivinchik-assist
Submitted by
anonymous
-
2 years ago
0
Дайвинчик — анкета
ECMAScript (JavaScript)
https://github.com/VityaSchel/daivinchik-assist
Submitted by
anonymous
-
2 years ago
0
Дайвинчик — взаимный лайк
ECMAScript (JavaScript)
https://github.com/VityaSchel/daivinchik-assist
Submitted by
anonymous
-
2 years ago
0
Host & Port & Path
ECMAScript (JavaScript)
support host port and path
Submitted by
anonymous
-
2 years ago
0
At least one uppercase and one lowercase Russian word with no digits nor spaces, nor special characters
ECMAScript (JavaScript)
A regular expression that matches conditions mentioned in above title
Submitted by
Kenya-West
-
2 years ago
0
Regex range price
ECMAScript (JavaScript)
Regex range price
Submitted by
anonymous
-
2 years ago
0
Time Regex
ECMAScript (JavaScript)
time
Submitted by
12944qwerty
-
2 years ago
-1
Extract favicon from html head meta links
ECMAScript (JavaScript)
I needed a generic way to pull the shortcut icon for sites. This expression parses the html for the icon. If the icon was not found, my code checks for the "favicon.ico" in the root of the site.
Submitted by
groundh0g
-
2 years ago
0
Date validation in yyyy-mm-dd format
ECMAScript (JavaScript)
Comes with choice of four separators
Submitted by
Regular-Expressions.info
-
2 years ago
0
Remove useless zeroes.
ECMAScript (JavaScript)
Replaces the string with a version that doesn't have the zeroes at the beginning or end of the string.
Submitted by
anonymous
-
2 years ago
0
Best Facebook video ID regex
ECMAScript (JavaScript)
Best Facebook video ID regex
Submitted by
Vikas Kapadiya
-
2 years ago
0
Regex fullname (auth-service)
ECMAScript (JavaScript)
Full name is at least 2 words The words of full name are have uppercase character at the beginning and lowercase characters for the rest. Between two words is just a space character. Full name does not have space character at the beginning and the end of the string.
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
find filename in full path
ECMAScript (JavaScript)
Finds the filename when given a full path.
Submitted by
ground0hg
-
2 years ago
0
Strong password
ECMAScript (JavaScript)
The password must contain : Between 8 and 24 chars 1 lowercase 1 uppercase 1 number 1 special char...
Submitted by
valent1618
-
2 years ago
1
...
170
171
172
173
174
...
181
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
[
a
-
z
\d
]
+
)
(
(
[
A
-
Z
\d
]
+
)*
(
[
a
-
z
\d
]
+
)*
)*
$
/
mg
Open regex in editor
Description
including digits and sequential uppercase letters
Submitted by
anonymous
-
a year ago