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,000 community submitted regex patterns...
0
URL
ECMAScript (JavaScript)
URL detection
Submitted by
anonymous
-
3 years ago
0
单行注释
ECMAScript (JavaScript)
单行注释
Submitted by
anonymous
-
3 years ago
0
多行注释
ECMAScript (JavaScript)
多行注释
Submitted by
anonymous
-
3 years ago
0
Split number and string
PCRE2 (PHP >=7.3)
Split number and string exp. data as below 17091327 Ren Xian Xtrcb County Bank Corporation Limited 50156 0862315402 19D 17091342 BaoDing QingYuan District Xtrcb Rural Bank Corporation Limit40156 0862315401 19D
Submitted by
anonymous
-
3 years ago
0
starts with number and ends with string or number
Python
starts with number and ends with string or number starts with +ve, -ve or decimal number
Submitted by
suraj
-
3 years ago
0
rackerrank tweet
ECMAScript (JavaScript)
Rackerrank regex prepare
Submitted by
jcbelarmino
-
3 years ago
0
Regex to match the image mime types
PCRE2 (PHP >=7.3)
Matches the image mime types. E.g image/png, image/jpeg, etc.
Submitted by
anonymous
-
3 years ago
0
conditional lookahead (IF (pat1) or (pat2) THEN match (pat1) and/or (pat2) box
Python
Python does not support conditionals using lookaround, even though Python does support lookaround outside conditionals. (?(?=regex) then|else) is illegal in python (?=regex)then|(?!regex)else - this works. madness details in the test strings
Submitted by
PeteC
-
3 years ago
0
reverse commenting/code order
PCRE2 (PHP >=7.3)
reverses order when code is followed by comments (comments prepended with ## )
Submitted by
anonymous
-
3 years ago
0
hi
PCRE2 (PHP >=7.3)
hi
Submitted by
anonymous
-
3 years ago
0
09|10|11
PCRE2 (PHP >=7.3)
select 09|10
Submitted by
ekam230
-
3 years ago
0
C style comments
PCRE2 (PHP >=7.3)
Regular expression to match all C style comments.
Submitted by
Seymoar Regex
-
3 years ago
0
how to match for a word not to be in the input
PCRE2 (PHP >=7.3)
Not Funny vs Funny - need to match for both cases
Submitted by
anonymous
-
3 years ago
0
匹配md图片
PCRE2 (PHP >=7.3)
匹配md图片
Submitted by
anonymous
-
3 years ago
0
匹配图片链接
ECMAScript (JavaScript)
匹配图片链接
Submitted by
anonymous
-
3 years ago
0
전방 탐색으로 정규표현식의 곱(AND) 작성하기
ECMAScript (JavaScript)
Submitted by
anonymous
-
3 years ago
0
script tag
ECMAScript (JavaScript)
find tag, but you can adapt to other tag
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
DOI extraction
PCRE2 (PHP >=7.3)
used to extract doi
Submitted by
Sharjeel
-
3 years ago
0
Nr2000 RegExp
PCRE2 (PHP >=7.3)
Regular exporession for Nr2000 validation
Submitted by
anonymous
-
3 years ago
0
Email Validation
Python
It won't recognize if the local-part is just one character like t@somedomain.com
Submitted by
anonymous
-
3 years ago
1
...
804
805
806
807
808
...
900
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
(?i)
(
слово1
.
*
слово2
)
|
(
слово2
.
*
слово1
)
(?-i)
"
gm
Open regex in editor
Description
Наличие слова без учета регистра в тексте
Submitted by
anonymous
-
3 years ago