Multiple img Url's with Regex

I do not know if it is possible to do what I try, it seems that not.

Link: https://bit.ly/3c0DKSM
Selector Html: div#selector_horizontal_imagen

If not use regex get all data, but I like to clean with only urls, so use this regex:
([\w+]+://)?([\w\d-]+.)[\w-]+[.:]\w+([/?=&#.]?[\w-]+)/?

But only get the first url, How I can get all in this mode?

I tried many variations of regex with the same result.
Marking multiple either, I get them another way but it generates multiple rows, duplicate data and more slow, I would prefer all links in one cell.

Thanks for your help

Grouped selector gives a good result, but needs subsequent cleaning
[{"img":"","img-src":"https://www.link.com"},
I test to do a macro in notepad++ to clean and remplace to comma or tab.

The same site another problem:
Link: https://bit.ly/3eY3H7x
Selector Table: table.references
Header row selector: thead tr
Data row selector: tr.producto_linea_filtro

The data preview take correct data, but when scrape get semiunsorted,
Column of web-scraper-order is mixed with table data

Why not just use Element Attribute, or even just Type: Image

{"_id":"forum-rationalstock-img","startUrl":["https://www.rationalstock.es/catalogo/producto/herramientas/herramientas-electricas/taladros-y-atornilladores-con-bateria/taladradora-atornilladora-de-bateria-bosch-mod--gsr-18-v-ec-professional/10850500039"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"h1[itemprop='name']","multiple":false,"regex":""},{"id":"Img1","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div#selector_horizontal_imagen > div:nth-of-type(1) img","multiple":false,"extractAttribute":"src"},{"id":"Img2","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"div#selector_horizontal_imagen > div:nth-of-type(2) img","multiple":false,"extractAttribute":"src"}]}

1 Like

Thanks you for helping.

I will try another way again.

I was trying to make it difficult, I wanted to try to get two data in one cell without using group, I wanted to try to learn, we progressed because I already get sites that I did not get before. I'll try another very complicated one shortly, I don't think I'll be capable ...