Hi,
I'm getting a text-file like
Oct 17 00:44:08 Information1|Information2|Information3<CR>
Oct 17 00:44:08 Information1|Information2|Information3<CR>
....
which I would like to get into dataverse. I already found the trick to split it into an array using
split(outputs('Compose_-_Read_in_File'), decodeUriComponent('%0D%0A'))
but I would like to have it like
Date: Oct 17 00:44:08
Variable1:Information1
Variable2:Information2
Variable3:Information3
But when I created this array, I did not come forward. Either I expect a string (but how to import multiple lines) or the array split did not work when I nest the logic.
thanks for the help