getting all the image files in a HTML Inspection
-
Hi All. 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
-
Hi All. 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
-
Hi. Yes I have done that, but for some reason I still get the src:" in the web page HTML matches. And I don't know why. Do I have to ignore that Somehow with a /S? Regards
-
Hi. Yes I have done that, but for some reason I still get the src:" in the web page HTML matches. And I don't know why. Do I have to ignore that Somehow with a /S? Regards