Hi All.
Quick question:
I want to find all of the images on a webpage, so I created a regex string as follows:
And it works.
However since not all images start with http or https, I keep missing some images.
How can I make this string say "So long as you end with a suffix in the group, get it.
Regards
Quick question:
I want to find all of the images on a webpage, so I created a regex string as follows:
http(s)?://[a-zA-Z0-9]\S+.(jpg|jpeg|bmp|gif|tif|png|webp)
And it works.
However since not all images start with http or https, I keep missing some images.
How can I make this string say "So long as you end with a suffix in the group, get it.
Regards