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.htmland this one below (that I need to find)
https://website.com/ensI 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. -
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login