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,740 community submitted regex patterns...
1
Get value from string
ECMAScript (JavaScript)
Used to get a value from a class e.g.: [...] class="font-12"[...] This regEx will receive "12" given the content of the class
Submitted by
Gabriel R. Sezefredo
-
9 years ago
2
Find scripts or css URIs
ECMAScript (JavaScript)
Given script or link tags, find and extracts URIs, excluding the double quotes
Submitted by
Rodrigo Kaveski
-
9 years ago
1
German ZIP Validation
ECMAScript (JavaScript)
Validates German ZIP codes
Submitted by
wehmoen
-
9 years ago
1
Digit
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
End of line - SJava
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Test BigDecimal formatter
ECMAScript (JavaScript)
no description available
Submitted by
Wally
-
9 years ago
2
composer package
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Address email
ECMAScript (JavaScript)
no description available
Submitted by
JS
-
9 years ago
0
TNEW Strong Password - 8 character limit
ECMAScript (JavaScript)
restricts passwords to 8+ characters
Submitted by
anonymous
-
9 years ago
-2
Match words in a string
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
C-Syle If Statement to Excel
ECMAScript (JavaScript)
no description available
Submitted by
nomloc
-
9 years ago
2
Match at least 2-letters (international)
ECMAScript (JavaScript)
RegExp to match that user has entered at least 2-letters (including international letters) in a field
Submitted by
anonymous
-
9 years ago
1
Italian Fiscal Code [Codice fiscale]
ECMAScript (JavaScript)
Codice fiscale italiano
Submitted by
Italo
-
9 years ago
2
Find any URL with no trailing slash
ECMAScript (JavaScript)
Not perfect, but better than none.
Submitted by
oneglory
-
9 years ago
0
date format regex for MM/dd/yyyy in javascript
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Date format
ECMAScript (JavaScript)
date should be in format YYYYMMDDHHMMSS
Submitted by
Prashant Kumar Dubey
-
9 years ago
0
file extension
ECMAScript (JavaScript)
get the file extension of a given filename
Submitted by
Simon Taylor
-
9 years ago
1
Console.log line deletion, multi line.
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
find link to profile in VK html message
ECMAScript (JavaScript)
поиск в тексте всех ссылок на профили пользователей вконтакте. ссылки вида [id12345678|Name]
Submitted by
MixApp
-
9 years ago
2
i18 language lines extraction
ECMAScript (JavaScript)
Extracts lines with i18 prefix from text
Submitted by
anonymous
-
9 years ago
1
...
14
15
16
17
18
...
187
Community Library Entry
0
Regular Expression
Golang
`
(?s)
<AbstractText
\b
[^
>
]
*
\b
[^
\/
]
?
>
(
.
+
?
)
</AbstractText>
`
g
Open regex in editor
Description
no description available
Submitted by
Richard Peng
-
8 years ago