I have a unique situation that requires I have quotes around several strings; when I try to add this to an array / struct it gets all fouled up.
I am reading the data from a firebase table.
For this example this is the data:
Death.png
Confidence.png
Sassy.png
I have tried to escape them using three quotes and then each on a separate line followed by three quotes to close it off; doesn’t work right. Tried enhanced with the enhanced delimiter and still can’t get it right. I have also tried escape them using the slash but it hasn’t worked either.
I need to be able to include this in a full struct that looks like this:
quoteData(sectionType: "section Header", quotes: ["Categories/General.png"]),
I need those quotes around section header and inside the brackets.
Any suggestions would be greatly appreciated.