[Solved] How do I convert string builder to string array in Android? [duplicate]


Here you can find Link

tempArray = sb.toString().split("ABCABC"); will split the string and return an array of strings for each line.

solved How do I convert string builder to string array in Android? [duplicate]