I have a string of List of Numbers as follow: (the whole List is stored as a string)
"[{'3', '4', '10', '11'}, {'13', '16', '17', '19'}]"
and i want to select only the numbers and assign them to a list, like this
['3', '4', '10', '11', '13', '16', '17', '19']
i tried to use split() but i have the Following result:
['3', '4', '1', '0', '1', '1', '1', '3', '1', '6', '1', '7', '1', '9']
how can i do This please.