Hi all,
I have data in a sharepoint field that looks like this:
test1; test2; test3
I want to split that out for an email so it appears as
test1
test2
test3
I've tried using string and split, but it drops it into an array so that it appears like: ["test1", "test2", "test3"] and I can't seem to make it appear without the array characters and on different lines. Can anyone help?