Hi
I have a list of strings stored in a sharepoint list and I am trying to pass these into Power Automate using Get Items and then store as an array. This array will then be used to build a series of subfolders so it is quite long.
The original string of text held in each row of the SharePoint list follows this format (with varying text depending on the row item:
"01 Proposal","01 Proposal/01 Original Proposal",
However when I look at the raw inputs, the format looks like this, with "\ added leading each section of the string and \ added at the end:
"\"01 Proposal\",\"01 Proposal/01 Original Proposal\",
I am then using Split on the comma to enable me to convert to an array but the characters that are being added are making the filepaths that I need to create invalid. Any ideas what I'm doing wrong?
Thanks