I have the following string:
,'first string','more','even more'
I want to transform this into an Array but obviously this is not valid due to the first coma. How can I remove the first coma from my string and make it a valid Array?
Get something like this:
myArray = ['first string','more','even more']
Thank you.