In my c# program I have one string like this.
String ss = [["Karoline,Ejlstrupvej 90 90, 4100, Ringsted,07:50:00,55.48148, 11.78890","Karoline,Ejlstrupvej 101, 4100, Ringsted,07:50:00,55.47705, 11.78523","Byskovskolen, Prstevej 19, 4100, Ringsted,55.46842, 11.80975"],["Mads,Sdr. Parkvej 27, 4100, Ringsted,08:00:00,55.44648, 11.78757","Niels,Fluebækvej 204, 4100, Ringsted,08:00:00,55.44295, 11.79137","Heldagsskolen Specialtilbud, Vestervej 27, 4100, Ringsted,55.44050, 11.78115"]];
How can I separate the values like this.
["Karoline,Ejlstrupvej 90 90, 4100, Ringsted,07:50:00,55.48148, 11.78890","Karoline,Ejlstrupvej 101, 4100, Ringsted,07:50:00,55.47705, 11.78523","Byskovskolen, Prstevej 19, 4100, Ringsted,55.46842, 11.80975"]
["Mads,Sdr. Parkvej 27, 4100, Ringsted,08:00:00,55.44648, 11.78757","Niels,Fluebækvej 204, 4100, Ringsted,08:00:00,55.44295, 11.79137","Heldagsskolen Specialtilbud, Vestervej 27, 4100, Ringsted,55.44050, 11.78115"]
I was trying
ss.Split('],[');
But as this only takes single character, I am not able to split the strings.