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???
String.Split()it does not exist. Can you post your code so we make sure you really tried something?String#split(String)was meant here