Regex: Find all html links that have minimum 3 letters after .com/
-
hello, I wanna find all links that have minimum 3 letters after
.com/
for example:
https://website.com/enigma-one.html
and this one below (that I need to find)
https://website.com/ens
I try this formula, but it doesn’t work:
SEARCH:
https://website.com/\w{0,3)
-
@hellena-crainicu said in Regex: Find all html links that have minimum 3 letters after .com/:
minimum 3 letters after .com/
\w{0,3)
The
{a,b}
syntax is to specify a min and a max.Use
{3,}
for a min of 3, and no max. -