Get object Array element

I get values from google sheet, and return to abject array.


result of “array_value_at_index(@Variable.V_List_Test , 0)” is below
[[“tape3”,“1000”],[“tape4”,“1000”],[“tape5”,“2000”],[“tape6”,“5000”]]
how to get every element ? I want to get individually text value as tape3, 1000, tape4, 1000…

Hey @rui

You can use the Join to String trigger to convert any array to a comma separated text value.

2 Likes

thank you , but can’t fulfill my request.
I updated my question.
create variable:


assign text value: [[“tape3”,“1000”],[“tape4”,“1000”],[“tape5”,“2000”],[“tape6”,“5000”]]

how to get a group [ ] values ? if I want to get [“tape5”,“2000”], then get string s1= “tape5” string s2 = “2000” individually.