I have an array like this a=['"nam', 'e"', '"numb', 'er"']. I want to create another array based on this array's cells. if the cell starts with a quote, then track the next cell that ends with a quote and declare that a cell for the new array. here's an example of how the array will become after conversion:
converted_array=['name', 'number']
Keep in mind that the array might be in this format
a=["'name", "e'", "something", "'numb", "er'"]
Any ideas?