Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
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)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 18,300 community submitted regex patterns...
0
提取持股情况
Created
·
2022-12-16 10:53
Flavor
·
PCRE2 (PHP)
能够基于董监高临时公告
Submitted by
mason
0
Fraction to decimal
Created
·
2022-12-16 12:04
Flavor
·
Python
Convert fractions in for of 7 1/2 or 7-1/2 with optional spacing to 7.5 avoiding expressions like 5-7 / 10-11 to be mistaken as 5-7/10
Submitted by
Waleed Kilany
0
split a comma separated string ignoring quotes and brackets
Created
·
2022-12-16 15:30
Flavor
·
PCRE2 (PHP)
Breaks a CSV into parts, but keeps those things in quotes (single OR double), or in curved bracket together. preg_match_all('(?:\'(?:\\\\.)\'|"(?:\\\\.)"|(\((?:++|(?1))*\))|)+s', $text, $matches)
Submitted by
anonymous
0
Locate all quoted (single or double) text, handling nested and also ignoring when in the first param of a ".replace("
Created
·
2022-12-16 15:37
Flavor
·
PCRE2 (PHP)
See https://onlinephp.io/c/a21b4 for PHP preg_replace_callback results
Submitted by
anonymous
0
Isolate javascript elements within [html] text
Created
·
2022-12-16 15:41
Updated
·
2023-01-02 12:23
Flavor
·
PCRE2 (PHP)
Needed to find all content between ... tags, plus any content within a that has an argument starting with on, e.g. See https://onlinephp.io/ for PHP runtime
Submitted by
anonymous
0
Regex to match all instances not inside quotes
Created
·
2022-12-16 16:01
Updated
·
2022-12-16 17:40
Flavor
·
PCRE (Legacy)
See https://stackoverflow.com/questions/6462578/regex-to-match-all-instances-not-inside-quotes
Submitted by
anonymous
0
Regex to match all instances not inside quotes (inc escaped quotes)
Created
·
2022-12-16 16:02
Flavor
·
ECMAScript (JavaScript)
See https://stackoverflow.com/questions/6462578/regex-to-match-all-instances-not-inside-quotes
Submitted by
anonymous
0
TatraBanka AMOUNT_VALUE
Created
·
2022-12-16 16:24
Updated
·
2023-06-14 09:56
Flavor
·
Java
some descriptoin
Submitted by
Inez van Acker, Robert Schulz
0
Simple reduce string words
Created
·
2022-12-16 19:23
Flavor
·
ECMAScript (JavaScript)
ECMAScript regex to try reduce words
Submitted by
Alan Ferreira
0
Filtro Página web
Created
·
2022-12-17 00:32
Flavor
·
PCRE (Legacy)
Filtro pagina web
Submitted by
anonymous
0
vue sfc script tag
Created
·
2022-12-17 12:17
Flavor
·
ECMAScript (JavaScript)
Regexp to match vue sfc script tag
Submitted by
YuTengjing
0
Email check
Created
·
2022-12-17 18:24
Flavor
·
PCRE2 (PHP)
check if email is correct
Submitted by
anonymous
0
OCP typedef name
Created
·
2022-12-18 03:46
Flavor
·
Python
Match to ocpCamelCase Name[Ptr]
Submitted by
Xiaoxing Cheng
0
minecraft custom chat parser
Created
·
2022-12-18 09:06
Flavor
·
ECMAScript (JavaScript)
basically parses Minecraft CUSTOM chat messages. it can parse: [rank] username: message [rank] username > message [rank] username › message [rank] username » message
Submitted by
anonymous
0
frequency
Created
·
2022-12-19 04:36
Flavor
·
PCRE2 (PHP)
e
Submitted by
hieppp
0
Twitter profile url regexp
Created
·
2022-12-19 12:26
Flavor
·
PCRE2 (PHP)
This regexp tests for Twitter profile urls
Submitted by
nbryskin
0
COINGBIT
Created
·
2022-12-19 14:17
Updated
·
2023-01-06 17:29
Flavor
·
PCRE (Legacy)
0x18a0C976040e8FD9E529b8B363150b201606396e COINGBIT USD $70000000.0 Paypal gislainelophes@gmail.com CPF 04805338652
Submitted by
COINGBIT
0
Date String ISO Pattern
Created
·
2022-12-19 15:16
Flavor
·
Golang
Date String ISO Pattern matcher
Submitted by
Lucas Morais
0
thank you pages
Created
·
2022-12-19 20:15
Flavor
·
PCRE2 (PHP)
thank you pages regex
Submitted by
anonymous
0
Permiso CRE SAT México
Created
·
2022-12-20 02:32
Flavor
·
.NET 7.0 (C#)
Valida clave o permiso de la CRE
Submitted by
Omar Chávez / Documentación SAT - Comeplemento Nacional CFDIs
Previous page
1
…
875
876
877
878
879
…
915
Next page
Community Library Entry
0
Regular Expression
Created
·
2022-12-07 04:44
Flavor
·
PCRE2 (PHP)
/
(?:
\d
+
(
\d
{1,3}
)*(
[
\,\
]
\d
{3}
)*
\.
\d
+
)?
.
+
(
sqft
)
/
gm
Open regex in editor
Description
find a number with a comma and continue with a string ex. 1,000 AED
Submitted by
anonymous