
Announcements
WEB EXTRACTION:
I have three selectors, They all copy and paste in different columns, i would like to combine them together in one column instead of three, Could anyone help combine three selector to 1 column.
i have tried using + but no luck.
div > div:eq(0) > div:eq(1) > div:eq(0) > h2 > a + div > div:eq(2) > div:eq(0) > h2 > a + div > div:eq(1) > div:eq(1) > div > h2 > a
+ is definitely not the right way since it is a combinator in a similar way as >, but I don't think what you want can be done. You will have to extract the three columns, then stitch them together afterwards, in the way that you want.
Or maybe you can elaborate your problem? I might be misunderstanding it.