Hello Community,
I’m new to this tool, I’m just trying to parse an HTML result, this has a lot of different elements with the same CSS class structure, for example: .card__price, .card__address, etc. To return all the findings in the Extract I added the generate arrays option. But now I receive two different arrays, one per field. The main problem is that not all the data has both fields, so perhaps the price is not there in the HTML. So afterward I end up receiving n Arrays one per field, with no correlation, so I can’t understand which element from the first array corresponds to which element in the second array. IE: array1 (prices) elements [23,22,15] Array2 (addresses) [“123 av”,“124 av”] so, how do I know if element [0] is the right for element[0] on the next array? perhaps using expressions? Or returning a default value if possible? Can you please help me, I’m blocked