I have a flow that's collecting a list into a string variable, output similar to,
["one","two","three"]
But I need to convert this to a list separated by a newline, ie,
One
Two
Three
I'm currently using a split(variables('string'), ',') compose action, but the input / outputs are identical,
["one","two","three"]
I had planned to then strip additional quotes / square brackets in following actions.
Is what I'm trying to achieve possible, if so are there any examples of how?