I have the following string:
'"alpha", "beta", "gamma", "delta"'
How can I convert the string into an array such that:
array = ["alpha", "beta", "gamma", "delta"];
So I can call on individual elements of the array such that:
array[0] = "alpha"
I've attempted using str.split but am unsure of the correct usage to separate the quotation marks and commas.