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
·
2020-03-22 06:46
Flavor
·
ECMAScript (JavaScript)
英文字母
Submitted by
anonymous
0
小写英文字母组成
Created
·
2020-03-22 06:46
Flavor
·
ECMAScript (JavaScript)
小写英文字母组成
Submitted by
anonymous
0
大写英文字母
Created
·
2020-03-22 06:47
Flavor
·
ECMAScript (JavaScript)
大写英文字母
Submitted by
anonymous
0
密码强度校验,最少6位,包括至少1个大写字母,1个小写字母,1个数字,1个特殊字符
Created
·
2020-03-22 06:47
Flavor
·
ECMAScript (JavaScript)
密码强度校验,最少6位,包括至少1个大写字母,1个小写字母,1个数字,1个特殊字符
Submitted by
anonymous
0
用户名校验,4到16位(字母,数字,下划线,减号)
Created
·
2020-03-22 06:48
Flavor
·
ECMAScript (JavaScript)
用户名校验,4到16位(字母,数字,下划线,减号)
Submitted by
anonymous
0
ip-v4
Created
·
2020-03-22 06:48
Flavor
·
ECMAScript (JavaScript)
ip-v4
Submitted by
anonymous
0
ip-v6
Created
·
2020-03-22 06:48
Flavor
·
ECMAScript (JavaScript)
ip-v6
Submitted by
anonymous
0
16进制颜色
Created
·
2020-03-22 06:49
Flavor
·
ECMAScript (JavaScript)
16进制颜色
Submitted by
anonymous
0
微信号,6至20位,以字母开头,字母,数字,减号,下划线
Created
·
2020-03-22 06:49
Flavor
·
ECMAScript (JavaScript)
微信号,6至20位,以字母开头,字母,数字,减号,下划线
Submitted by
anonymous
0
邮政编码(中国)
Created
·
2020-03-22 06:50
Flavor
·
ECMAScript (JavaScript)
邮政编码(中国)
Submitted by
anonymous
0
中文和数字
Created
·
2020-03-22 06:50
Flavor
·
ECMAScript (JavaScript)
中文和数字
Submitted by
anonymous
0
不能包含字母
Created
·
2020-03-22 06:50
Flavor
·
ECMAScript (JavaScript)
不能包含字母
Submitted by
anonymous
0
cisco show run interface
Created
·
2020-03-22 09:15
Flavor
·
PCRE (Legacy)
This regex fetches interface ID along with its ip address and description if configured otherwise blank
Submitted by
anonymous
0
Float representation
Created
·
2020-03-22 11:50
Flavor
·
Python
All float representations that can be consumed by strtod() (string to double function in c) Compatible with flex/bison
Submitted by
anonymous
0
phone regex validation
Created
·
2020-03-22 19:04
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Domain validation regex suitable for user input
Created
·
2020-03-23 01:04
Flavor
·
Golang
This regexp can be used to validate domain names in Golang. While it cannot enforce the 253 character limit (with optional trailing period not included) that can be easily done with a len(domain) <= 253 check. This can be used as-is in other languages, even with RE2 regex engine. Non-capturing groups are used.
Submitted by
anonymous
0
find including multiline
Created
·
2020-03-24 06:13
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
URL
Created
·
2020-03-24 07:49
Flavor
·
ECMAScript (JavaScript)
https://regex101.com/r/VC5MsA/4
Submitted by
anonymous
0
CSB34 Account header
Created
·
2020-03-24 19:02
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Get parent folder and file name from full path
Created
·
2020-03-24 22:14
Flavor
·
PCRE (Legacy)
This expr will get the parent folder and file name from a full path eg: c:\folder1\folder2\folder3\file1.txt returns folder3\file1.txt
Submitted by
anonymous
Previous page
1
…
677
678
679
680
681
…
915
Next page
Community Library Entry
0
Regular Expression
Created
·
2020-03-24 07:49
Flavor
·
ECMAScript (JavaScript)
/
(
(
(
[
A
-
Za
-
z
]
{3,9}
:
(?:
\/\/
)?
)(?:
[
\-
;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9
\.\-
]
+
|
(?:
www
\.
|
[
\-
;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9
\.\-
]
+
)(
(?:
\/
[
\+
~%
\/\.
\w
\-
_
]
*
)?
\?
?
(?:
[
\-\+
=&;%@
\.
\w
_
]
*
)
#
?
(?:
[
\.\!\/\\
\w
]
*
)
)?
)(
:
\d
+
)?
\/
?
(
\w
+
)?
\/
?
/
gmi
Open regex in editor
Description
https://regex101.com/r/VC5MsA/4
Submitted by
anonymous