I have a txt file that has the following data:
Índices da combinação encontrada: [1, 2, 3]
Valores da combinação encontrada: [1022.61, 1022.61, 1022.61]
I just need you to come back to me: [1, 2, 3] and [1022.61, 1022.61, 1022.61]
I need to access numbers 1,2,3 , I need to scroll through each number.
for example, for each number inside “” return the corresponding index, how can I do this?
I need to access numbers 1,2,3 , I need to scroll through each number.
for example, for each number inside “” return the corresponding index, how can I do this?
hey @amanda.gondim
After extracting the value from regex
split the string by " , " and it will array of string [1, 2, 3]
use the loop now can you perform further .