cant anything find or read about this problem ( it\'s problem only for me but maybe someone know way to fix it.
i have function which reading from asset folder
temp = sb.toString().split("TABTAB");
will split the string and return an array of strings for each line. But Iäm not completely sure that this is what you are trying to do...
To convert stringbuilder to string array do the following:
string sbString = sb.toString();
String[] ary = sbString.split("TABTAB");