How to proceed arrays of json

Hey makers

one of the http services returns a huge list of JSONs separated with newlines

{json very big data1} (new line here)
{json very big data2}
{json very big data3}

I need to take from every json one attribute and concatinate them into result value

trying to google decission and meanwile asking help

sorry for maybe simple question, Im new here

TY all

I tried splilt Data with newlines and work with them but it doesnt work…

sample_tss_result.txt (841.8 KB)

1 Like

Hi,
In the http module result there should be something under Data and you should map to the exact element which contains the text.

this is exactly same situation like in this video

but solution just wont work, idk why, looks like method Split cant work with such big Data …

probably somehow need to conver “raw long text” to “text”

solution found!!! need “toString” it first

2 Likes