Hello All,
I'm creating an automatic flow (email trigger) that collectes data from a table within the body of an email by converting HTML to a JSON array.
My flow is 90% complete but I'm really struggling with an expression for the select action.
The body is the outputs of a Compose action that 'Splits' table rows into an array.
body = ["Jerry’s^Apple^Banana^Orange^Pear^grape^Kiwi^ Lemon",
Etc…
]
Shop = split(item(), '^')[0]
Fruit = skip(split(item(),'^'),1)
Gives me the below ouput. Is there a way to isolate a single fruit in this case Grape? (Highlighted)
I've tried various combintions of Split/Skip on Item() but I haven't had any success. Any advice would be appreciated.
