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 2,920 community submitted regex patterns...
1
Patentes chilenas con o sin guion
PCRE2 (PHP >=7.3)
AB-CD-12 AB-12-34 ABCD12 AB1234
Submitted by
Pablo
-
3 hours ago
1
Patentes chilenas
PCRE2 (PHP >=7.3)
Validación de pantetes de automóviles en chile AB-CD-12 AB-12-34
Submitted by
Pablo
-
3 hours ago
1
Direcciones
PCRE2 (PHP >=7.3)
Validación de direcciones en Chile
Submitted by
Pablo
-
4 hours ago
1
RUT chileno
PCRE2 (PHP >=7.3)
Validación de formato de RUT chileno. Permite el punto en posiciones correctas. 15.000.000-9 ó 15000000-9
Submitted by
Pablo
-
4 hours ago
1
Nombres
PCRE2 (PHP >=7.3)
Validación de nombres con todas las posibilidades de Chile.
Submitted by
Pablo
-
4 hours ago
1
Basic CSS Parser
PCRE2 (PHP >=7.3)
This regex matches every name-value pair inside a line of inline CSS. It doesn't support CSS that contains string literals (such as content: "hello world";). Therefore, only use it on simple CSS that doesn't make use of attributes which take a string literal as its value. Parsing Rules Every occur...
Submitted by
A-Paint-Brush
-
2 days ago
1
Buscar fechas
PCRE2 (PHP >=7.3)
Buscar fechas
Submitted by
anonymous
-
2 days ago
1
LIMA
PCRE2 (PHP >=7.3)
diff --git a/tests/models/llama/test_modeling_llama.py b/tests/models/llama/test_modeling_llama.py index 61b33b3ec9ab1..3e84552ab7e21 100644 a/tests/models/llama/test_modeling_llama.py +++ b/tests/models/llama/test_modeling_llama.py @@ -729,11 +729,8 @@ def test_compile_static_cache(self): ...
Submitted by
anonymous
-
3 days ago
1
myHomeBBEdit
PCRE2 (PHP >=7.3)
modifydata in cvs file
Submitted by
jaladuvar
-
7 days ago
1
Uppercase Consonants - 17 character
PCRE2 (PHP >=7.3)
17 character solution for quiz task 3
Submitted by
Eq
-
7 days ago
1
MT940
PCRE2 (PHP >=7.3)
:61:240831C201843307NINT :61:240833D201843307NINT
Submitted by
anonymous
-
8 days ago
1
Select first two quoted fields in CSV file
PCRE2 (PHP >=7.3)
In a .csv file where every field is quoted (for whatever reason) select the first two columns
Submitted by
anonymous
-
16 days ago
1
Currency format check, whole or decimal, no symbol, no negative
PCRE2 (PHP >=7.3)
I use this for validation on an input. Currency input that must include comma separation. Decimal places, 2, optional. No minus sign or currency symbols allowed. Valid: 1,000 1,234.56 1,234,555 ...
Submitted by
Truper
-
18 days ago
1
Firewalls Juniper
PCRE2 (PHP >=7.3)
09/21/11 10:47 29 Allow Partner-SQL-eComm 46990 tcp Partner-Web-eComm mysql 19999
Submitted by
vicevil
-
19 days ago
1
Get Plate from text
PCRE2 (PHP >=7.3)
Gettin plate from text (eng-gre)
Submitted by
anonymous
-
19 days ago
1
ANACOD
PCRE2 (PHP >=7.3)
Anacode:\s(\S+)\sTest Code:
Submitted by
GEE
-
20 days ago
1
vozuskia (cs/sk)
Java 8
Addes a non-breaking space after any of the letters included in the [vozuskia] class.
Submitted by
Manuel Souto Pico
-
23 days ago
1
Mp4 Url RegEx
PCRE2 (PHP >=7.3)
Match a http, https and local path url that contains Mp4
Submitted by
anonymous
-
23 days ago
1
Latin letters (Basic, extended-a, extended-b) with numbers
PCRE2 (PHP >=7.3)
https://symbl.cc/en/unicode-table/#latin-extended-b
Submitted by
thenostrom
-
24 days ago
1
匹配文件连接的文件名
PCRE2 (PHP >=7.3)
用于获取文件或者图片链接的文件名包含后缀
Submitted by
anonymous
-
24 days ago
1
2
3
...
146
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
\A
[^
,"
]
*
(?=
,
)
|
(?:
[^
",
]
*
"
[^
"
]
*
"
[^
",
]
*
)+
|
[^
",
]
*
"
[^
"
]
*
\Z
|
(?<=
,
)
[^
,
]
*
(?=
,
)
|
(?<=
,
)
[^
,
]
*
\Z
|
\A
[^
,
]
*
\Z
/
gm
Open regex in editor
Description
parse comma separated values with quotes
Submitted by
Iulian Fecioru
-
a month ago