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 18,040 community submitted regex patterns...
0
User input check for xss
ECMAScript (JavaScript)
Checks for strings that could possibly be a tag with malicious content
Submitted by
C.W. Joosse
-
8 years ago
0
Regex html tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
get all tags except one
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
get attributes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
html content
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
International Phones Validation
ECMAScript (JavaScript)
I don't know how many times I found some regex online that just didn't work. Finally decided to write my own that actually works for some of our customers around the world.
Submitted by
Alexei Yagolnikov
-
8 years ago
0
Decimal type check for view column
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Schema.Table_name | \ \*\
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
FROM\ SCHEMA(.TABLE_NAME)?
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Schema.Table_name | \ \*\
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
attr
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
final
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
SCHEMA.TABLE_NAME|Primary_key (x (x+n)?)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
final2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Поиск объявлений функций и процедур на T-SQL (Find function (procedure) declarations for T-SQL)
PCRE (PHP <7.3)
Русский Я использовал это регулярное выражение для построения Notepad++ списка функций и процедур в SQL файле. Пример окна Notepad++ со списком функций Вызывается командой: Вид\Список функций. Так как в Notepad++ нет встроенного парсера для SQL кода, то пришлось написать свой. Чтобы его встроить...
Submitted by
FFFFF
-
8 years ago
0
Add a nonce for inline scripts (CSP, nginx)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
DisSection_Parser
PCRE (PHP <7.3)
no description available
Submitted by
zhaDe
-
8 years ago
0
My lib
ECMAScript (JavaScript)
no description available
Submitted by
Marc
-
8 years ago
0
Url brochure met utm
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
RegexForSplitStringUsingRegex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
407
408
409
410
411
...
902
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(?P<io_device_name>
[
a
-
z|0
-
9
]
+
)+
\s
+
(?P<io_read_req_per_sec>
\d
+
\.
\d
+
)+
\s
+
(?P<io_write_req_per_sec>
\d
+
\.
\d
+
)+
\s
+
(?P<io_read_kb_per_sec>
\d
+
\.
\d
+
)+
\s
+
(?P<io_write_kb_per_sec>
\d
+
\.
\d
+
)+
\s
+
(?P<io_req_avg_wait_millisec>
\d
+
\.
\d
+
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
5 years ago