我从服务器得到一长串字符串
AS= String1 ~ String2 ~ String3 ~
可以确定。“~”代表每条数据的结束。我知道每个String的字数限制最多为22,但我不知道他的实际长度。
所以我使用这段代码来确定每个字符串的值
//////////////////////////Use of substring Get every character
String T1=AS.substring(0,1);
String T2=AS.substring(1,2);
.
.
.
String T22=AS.substring(21,22);
if (T2.equals("~")) {
DATA=T1;
}
if (T3.equals("~")) {
DATA=T1+T2;
}
//Confirm T3 "~" Get DATA = T2 + T1
String LG=LG+DATA.length()+1;
//The second document must be added to the number of words in the document "~"
String TT1=AS.substring(0+LG,1+LG);
确定字符串 100 重复 100 次 我已经制造了 8000 多行代码 有没有更简单的方法可以达到我的要求?