我正在研究安卓。我有一个包含“|”的字符串 和“@”符号。
str = |13651@This is testing1@4769@This is testing2@0@0@4769@1@0@|13652@This is again testing1@4766@This is again testing2@1@1@3245@0@2@|.................
First, I need to split the string upto '|' operator. So i will get data like
str[0] = 13651@This is testing1@4769@This is testing2@0@0@4769@1@0@
str[1] = 13652@This is again testing1@4766@This is again testing2@1@1@3245@0@2@
我第一次需要设置 str[0] 数据。然后,当单击下一个按钮时,必须设置 str[1] 数据。如果再次单击下一个按钮,则必须设置 str[3],依此类推。
我怎样才能做到这一点?任何帮助将不胜感激。