我有一个字符串“552 s hello”我想在一个子字符串中获得“552”,在另一个子字符串中获得“s”,我想根据前两个空格分割这个字符串。请帮助...
问问题
72 次
2 回答
5
你可以这样做:
String t = "522 s hello"
String[] test = t.split(" ");
现在,在 String 数组中,您将拥有三个值,“522”、“s”和“hello”。您现在可以访问每个值。
于 2013-09-09T21:25:39.987 回答
2
使用String#split(String regex)
:
String[] sp="552 s hello".split(" ");
String fiveFiveTwo=sp[0];
String letterS=sp[1];
这些名称最终不是很有用,因此您需要重命名我创建的字符串。你也应该赶上ArrayIndexOutOfBoundsException
。
于 2013-09-09T21:24:33.247 回答