I have a kind of strange problem, I am receiving from server side an compressed text that is a string array, for exemple ["str1","str2"]
or just ["str"]
Can I convert it to an normal string array? like:
String[] array;
array[1] = "str";
I know that is not a big deal to convert an simple string but not this one...Any ideas?