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,020 community submitted regex patterns...
0
find match in url
Python
find the word "google" with "i" or "com"
Submitted by
Shai chikorel
-
3 years ago
0
Wersjonowanie semantyczne
PCRE (PHP <7.3)
a
Submitted by
https://semver.org/lang/ko/
-
3 years ago
0
get all image link in html
PCRE2 (PHP >=7.3)
get all image link in html
Submitted by
anonymous
-
3 years ago
1
Strong Password
PCRE2 (PHP >=7.3)
Support JS and PHP
Submitted by
jodi@nusantarabetastudio.com
-
3 years ago
0
PublicRegexs
ECMAScript (JavaScript)
My public regexs
Submitted by
anonymous
-
3 years ago
0
match hash route #/path?params
ECMAScript (JavaScript)
Example: input: #/articles?page=1&show=published&by=updated&start=newest&preview=true output:...
Submitted by
oklookat
-
3 years ago
0
Argument:Value, exclusively
PCRE2 (PHP >=7.3)
Attempt to only match Argument:Value pairs, but exclude numeric:numeric (for instance a time value format) using negative lookahead. Can be used for console arguments, examples: USE_DEV:true. => valid / match 07:00 or 07:00:00 => invalid / no match
Submitted by
Theo V
-
3 years ago
0
name
PCRE2 (PHP >=7.3)
One name
Submitted by
sharif
-
3 years ago
0
查找 by 非贪婪
ECMAScript (JavaScript)
默认是贪婪模式;在量词后面直接加上一个问号?就是非贪婪模式。
Submitted by
anonymous
-
3 years ago
0
keywords
Python
matching a keyword expression and wrapping it with an html tag
Submitted by
anonymous
-
3 years ago
0
hostname - websites
ECMAScript (JavaScript)
getting the hostname from website
Submitted by
anonymous
-
3 years ago
0
tag(value) or bare tag
PCRE2 (PHP >=7.3)
An expression to parse strings in the format tag(value) or tag or tag()
Submitted by
anonymous
-
3 years ago
0
Image URL with 'w' and 'crop' query var
PCRE2 (PHP >=7.3)
This is a regex expression to match URL with 'w' (width) and 'crop' query vars
Submitted by
Bhavik Kalpesh
-
3 years ago
0
Replace <b> HTML tag with <strong> tag
PCRE (PHP <7.3)
Replace old formatting HTML tag with semantic tag. It can be used as a template for replacing any HTML tag, like , etc.
Submitted by
O’Reilly Regular Expressions Cookbook
-
3 years ago
0
Check Feature title format
ECMAScript (JavaScript)
See title
Submitted by
anonymous
-
3 years ago
0
regex para CPF
PCRE (PHP <7.3)
Verificação simplificada dígitos CPF
Submitted by
anonymous
-
3 years ago
0
GCC Cpp Compiler
PCRE2 (PHP >=7.3)
Jenkins Warnings Next Generation Plugin
Submitted by
Dennis Kölbel
-
3 years ago
(Last modified 3 years ago)
1
IPv4 + TCP-Port
Java 8
This regex matches a IPv4 with a TCP Port (1-65535) Example: 192.168.0.69:1337 will match and have the groups: Group 1: 192.168.0.69 Group 2: 1337
Submitted by
SIMULATAN
-
3 years ago
0
Markdown
PCRE (PHP <7.3)
Working with Markdown
Submitted by
anonymous
-
3 years ago
0
2012 movies
PCRE2 (PHP >=7.3)
g
Submitted by
anonymous
-
3 years ago
1
...
168
169
170
171
172
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?x)
#
ignore
les
espaces
et
permet
donc
l'indentation
(?(DEFINE)
(?<string>
"
.
*
?
"
)
(?<number>
\d
+
)
(?<value>
\s
*
(?:
(?&string)
|
(?&number)
|
(?&list)
)
\s
*
)
(?<list>
\[
(?&value)
(?:
,
(?&value)
)*
\]
)
)
^
(?&value)
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago