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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 3,440 community submitted regex patterns...
0
校验E-Mail 地址
ECMAScript (JavaScript)
同密码一样,下面是E-mail地址合规性的正则检查语句。
Submitted by
anonymous
-
7 years ago
0
校验身份证号码
ECMAScript (JavaScript)
18位
Submitted by
anonymous
-
7 years ago
0
校验身份证号码
ECMAScript (JavaScript)
15位
Submitted by
anonymous
-
7 years ago
0
校验日期
ECMAScript (JavaScript)
“yyyy-mm-dd“ 格式的日期校验,已考虑平闰年。
Submitted by
anonymous
-
7 years ago
0
校验IP-v4地址
ECMAScript (JavaScript)
IP4 正则语句
Submitted by
anonymous
-
7 years ago
0
校验IP-v6地址
ECMAScript (JavaScript)
IP4 正则语句
Submitted by
anonymous
-
7 years ago
0
提取Color Hex Codes
ECMAScript (JavaScript)
有时需要抽取网页中的颜色代码,可以使用下面的表达式。
Submitted by
anonymous
-
7 years ago
0
提取网页图片
ECMAScript (JavaScript)
假若你想提取网页中所有图片信息,可以利用下面的表达式。
Submitted by
anonymous
-
7 years ago
0
抽取注释
ECMAScript (JavaScript)
如果你需要移除HMTL中的注释,可以使用如下的表达式。
Submitted by
anonymous
-
7 years ago
0
匹配HTML标签
ECMAScript (JavaScript)
通过下面的表达式可以匹配出HTML中的标签属性。
Submitted by
anonymous
-
7 years ago
0
aHex color
ECMAScript (JavaScript)
no description available
Submitted by
@hachesilva
-
7 years ago
0
Array-like string
ECMAScript (JavaScript)
Matches strings that are formatted as arrays. The following will match: [ 3.4, -600, foo ] ["foo","bar"] [ bar, 1600 ]...
Submitted by
Chris Swithinbank
-
7 years ago
0
match all #tag except specified
ECMAScript (JavaScript)
in the example, I'm matching all the #tags except *#thankyouburger *. very useful for when you want to strip out all but one tag
Submitted by
Pavel Dominguez
-
7 years ago
0
Romanian Exact Match
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
key value pairs
ECMAScript (JavaScript)
detect key value pairs in string with key having spaces
Submitted by
anonymous
-
7 years ago
0
key value pairs ends with character
ECMAScript (JavaScript)
detect key value pairs that ends with ; or & in a string contains sapaces
Submitted by
anonymous
-
7 years ago
0
Validate floating-point value string for .NET System.Double and System.Single.
ECMAScript (JavaScript)
After this validation, you can safely put string to System.Double.Parse and System.Single.Parse functions.
Submitted by
Sergey Voronkov
-
7 years ago
0
Split html tags
ECMAScript (JavaScript)
no description available
Submitted by
Jeremi Stadler
-
7 years ago
0
P10 Email RegEx
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match a single character at a time present in the list
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
8
9
10
11
12
...
172
0x28C6A6DdF8fF8A47A90A69bfE75cd89904a14d71
1
Regular Expression
Golang
`
^
(
[
a
-
z0
-
9
]
+
(?:
[
._-
]
[
a
-
z0
-
9
]
+
)*
)
@
(
[
a
-
z0
-
9
]
+
(?:
[
.-
]
[
a
-
z0
-
9
]
+
)*
\.
[
a
-
z
]
{2,}
)
$
`
i
Open regex in editor
Description
0x28C6A6DdF8fF8A47A90A69bfE75cd89904a14d71
Submitted by
anonymous
-
a year ago