I am working with a string containing an array of arrays that needs to be split into individual arrays.
array = "[['<1>', 'likes'], ['<2>', 'reads'], ['<3>', \"doesn't have\"]]"
This is what I have attempted so far:
array.split(",")
The desired output should be:
[['<1>','likes'], ['<2>', 'reads'],['<3>', \"doesn't have\"]]