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
PCRE2 ipv6
PCRE2 (PHP >=7.3)
Some cases of ipv6 at string begin
Submitted by
anonymous
-
3 years ago
0
LinkedIn School Username
PCRE2 (PHP >=7.3)
x
Submitted by
anonymous
-
3 years ago
1
Worlde helper
PCRE2 (PHP >=7.3)
simple, just adjust that: contains letters "l z n" (probably can be simplified but I dont know how) exlude anywhere "rtuasgc" dictionary taken from wordle JS file
Submitted by
anonymous
-
3 years ago
0
Yandex music track regex
Python
Regex for yandex music track
Submitted by
anonymous
-
3 years ago
0
提取src
PCRE2 (PHP >=7.3)
提取src
Submitted by
anonymous
-
3 years ago
0
Hitech RTOZONE
Java 8
Checks the registration number's validity
Submitted by
Sid
-
3 years ago
0
Last 4 charecters
PCRE2 (PHP >=7.3)
This regex allows you to access the last 4 charecters in a string and manipulate them however you want
Submitted by
anonymous
-
3 years ago
0
Find two matching group
Python
Find two matching groups
Submitted by
anonymous
-
3 years ago
0
java-test1
Java 8
java test string
Submitted by
anonymous
-
3 years ago
0
Danish CPR number validation
PCRE (PHP <7.3)
CPR number is presented with or without a dash
Submitted by
anonymous
-
3 years ago
1
Numbers only (including decimals) ( JS work fine)
ECMAScript (JavaScript)
Rejects first symbol if 0 and all other non number (doesn't includes .123 )
Submitted by
Sofitt
-
3 years ago
(Last modified 3 years ago)
0
quote
PCRE2 (PHP >=7.3)
quote text
Submitted by
anonymous
-
3 years ago
0
HTML TAG Match
PCRE2 (PHP >=7.3)
Match a html tag.
Submitted by
Fernando Gaston Olivera Alaniz
-
3 years ago
1
CSV quotation mark
PCRE2 (PHP >=7.3)
See quotes that are not delimiters
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
1
No trailing spaces or extra spaces max char 200 min 2 and hyphen and & only allowed
PCRE (PHP <7.3)
No trailing spaces or extra spaces max char 200 min 2 and hyphen and & only allowed
Submitted by
Natalia zolotareva
-
3 years ago
2
Currency with dollar sign, two decimals, negative allowed, starting with period ok
ECMAScript (JavaScript)
Currency with dollar sign, two decimals, negative allowed, starting with period ok
Submitted by
Natalia Zolotareva
-
3 years ago
0
Nom avant domaine
PCRE2 (PHP >=7.3)
sdfsdfsdfsdf
Submitted by
sdfsfsdfsdf
-
3 years ago
0
py.checkio.org, task.long-repeat-inside
PCRE2 (PHP >=7.3)
in this one you should find a repeating sequence inside the substring. I have an example for you: in a string "abababc" - "ab" is a sequence that repeats more than once, so the answer will be "ababab" `repeat_inside('aaaaa') == 'aaaaa' repeat_inside('aabbff') == 'aa' repeat_inside('aababcc'...
Submitted by
https://py.checkio.org/mission/long-repeat-inside/publications/rossras/python-3/regular-expressions-now-you-have-two-problems/
-
3 years ago
(Last modified 3 years ago)
0
Parse ISO date with named group for Python
Python
Parses ISO date like: 2021-01-19T15:21:32.59+02:00 and returns these named groups: fulldate (full date and time) date (2021-01-19)...
Submitted by
Fabio Rotondo (fsoft)
-
3 years ago
0
Currency Style (py.checkio.org)
Python
a mission on py.checkio.org: Currency Style
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
1
...
167
168
169
170
171
...
902
Community Library Entry
5
Regular Expression
PCRE2 (PHP >=7.3)
/
(?:
http
[
s
]
?
:
\/\/
.
)?
(?:
www
\.
)?
[
-a
-
zA
-
Z0
-
9@%._
\+
~#=
]
{2,256}
\.
[
a
-
z
]
{2,6}
\b
(?:
[
-a
-
zA
-
Z0
-
9@:%_
\+
.~#?&
\/\/
=
]
*
)
/
gm
Open regex in editor
Description
Match any url in text or html (http, https)
Submitted by
Jérémy Munsch
-
3 years ago