I have a string that would always output in the following format, but with different lengths.
String s1= "['Aaaa', 'Eeee', 'Ffff', 'Cccc', 'Dddd']";
How to split this string
and store the values in a n array
of strings
, I tried String.Split(), but I failed to catch the inner values.
Do you think regular expressions could help???