I have a string dictionary as shown in below. As you see, keys are string dates, but their values are dictionary.
"{"19-02-2020":{"1":"ABC","2":"DEF"},"20-02-2020":{"1" : "GHI","2" : "JKL","3" : "MNO"},"21-02-2020" : {"1" : "PRS"}}"
That can be written to be more understandable;
"{
"19-02-2020" : {"1" : "ABC", "2" : "DEF"},
"20-02-2020" : {"1" : "GHI", "2" : "JKL", "3" : "MNO"},
"21-02-2020" : {"1" : "PRS"}
}"
How can I get the string dates in string format? I tried to split this string with "," or something more. But it seems impossible because I will get more dates with its dictionary values in the future. Is there any way to get keys from string dictionary?
I want to get an array which contains string dates like ["19-02-2020","20-02-2020","21-02-2020"]