我读了很多书,但我不知道如何获得所需的字符串,我的字符串是:“552 s East and west we are the best”我想在 char 中的一个字符串“s”中获得“552”以及所有一个字符串中空格's'后面的剩余字符串,每次都会改变空格的位置。请帮忙。我试过了
messages="552 s East and west we are the best";
String[] sp=messages.split(" ");
String threadid=sp[0];
String status=sp[1];
String msg=sp.toString();
但我在味精中得到了一些垃圾。