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 6,280 community submitted regex patterns...
0
Vivaldi
PCRE2 (PHP >=7.3)
Vivaldi
Submitted by
anonymous
-
2 years ago
0
Find unmatched smart quotes or bad quotes
PCRE2 (PHP >=7.3)
Finds all unmatched smart quotes, double and single, but ignores close single smart quote when used as an apostrophe.
Submitted by
Rich Meng
-
2 years ago
0
Matches ISBN-10 or ISBN-13 in any text (separator can be space or -)
PCRE2 (PHP >=7.3)
Matches ISBN-10 or ISBN-13 in any text (separator can be space or -). You still need to use code to compute checksum using the last digit to validate.
Submitted by
anonymous
-
2 years ago
0
Тестовая строка
ECMAScript (JavaScript)
Здесь можно тренироваться с регулярками
Submitted by
anonymous
-
2 years ago
0
Split Http(s) Response
PCRE2 (PHP >=7.3)
Split Http(s) Response
Submitted by
anonymous
-
2 years ago
0
Lookahead and lookbehind example
PCRE2 (PHP >=7.3)
An example of lookahead and lookbehind, both negative and positive. Allows to limit matches within specified limits without capture groups
Submitted by
CAMOKPYT
-
2 years ago
0
MoltenObsidian Internal Link
.NET 7.0 (C#)
Provides parsing w/ named variables for MoltenObsidian-flavoured Markdown wikilinks. (https://github.com/Nodsoft/MoltenObsidian)
Submitted by
Sakura Akeno Isayeki
-
2 years ago
(Last modified a year ago)
0
MySQL DATETIME
PCRE2 (PHP >=7.3)
MySQL DATETIME
Submitted by
anonymous
-
2 years ago
0
AppStore apps URL
PCRE2 (PHP >=7.3)
This regex can detect if URL is Appstore app link
Submitted by
anonymous
-
2 years ago
0
find unity components guid
ECMAScript (JavaScript)
use to find unity components guid
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Invoice nr
PCRE2 (PHP >=7.3)
regexp search in mongo db by nr
Submitted by
Tivadar
-
2 years ago
0
File extension
ECMAScript (JavaScript)
Parse file extension.
Submitted by
Webmato
-
2 years ago
0
Amount (Number with two decimal places)
ECMAScript (JavaScript)
| valid | invalid | |:----------|:------------| | 0.00 | 1 | | 0.99 | 1. | | 10.00 | 1.9 | | 999.99 | 1,99 |...
Submitted by
anonymous
-
2 years ago
0
Capture Words
ECMAScript (JavaScript)
Get each word from a text.
Submitted by
anonymous
-
2 years ago
0
Doble Espacio
PCRE2 (PHP >=7.3)
Encuentra texto con toble espacio
Submitted by
Carlos Osmar
-
2 years ago
0
Validación de fecha
PCRE2 (PHP >=7.3)
Este código validará la fecha
Submitted by
Carlos Osmar
-
2 years ago
0
Validación de palabra USFX
PCRE2 (PHP >=7.3)
Puede validar diferentes maneras de escribir la palabra Universidad Mayor, Real y Pontificia de San Francisco Xavier de Chuquisaca
Submitted by
Carlos Osmar
-
2 years ago
0
Números reales
PCRE2 (PHP >=7.3)
Números reales
Submitted by
Carlos Osmar
-
2 years ago
0
find number with comma and string
PCRE2 (PHP >=7.3)
find a number with a comma and continue with a string ex. 1,000 AED
Submitted by
anonymous
-
2 years ago
0
Smile
PCRE2 (PHP >=7.3)
Accepts : ':' and ';' for eyes Optional : '-' and '~' for nose Accepts : ')' and 'D' for mouth
Submitted by
annickFro
-
2 years ago
1
...
282
283
284
285
286
...
314
Community Library Entry
0
Regular Expression
Python
r"
[
\d
]
+
\.
(
[
\s\S
]
*
?
)
\n
+
A
.
(
[
\s\S
]
*
?
)
\n
+
B
.
(
[
\s\S
]
*
?
)
\n
+
C
.
(
[
\s\S
]
*
?
)
\n
+
D
.
(
[
\s\S
]
*
?
)
(?=
\n
)
"
g
Open regex in editor
Description
对有ABCD四个选项的选择题题目进行匹配
Submitted by
Wang Miao
-
a year ago