StringBuilder to Array of Strings how to convert

前端 未结 2 562
挽巷
挽巷 2020-12-21 06:25

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

2条回答
  •  失恋的感觉
    2020-12-21 07:03

    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...

提交回复
热议问题