I have this kind of array:
'[[00487-9904-01, 00487-9904-25], [00487-9901-30]]'
How can I convert it to array of strings
[["00487-9904-01", "00487-9904-25"], ["00487-9901-30"]]
I tried ast.literal_eval and json.loads, because inside the array, 00487-9904-01 is neither a string or a number, neither of these two methods works.
ast.literal_eval