示例:
abc 123 xyz
预期结果:
123 xyz
两个字符串可以用一个或多个空格字符分隔。该文本是有用的,并且不保证空白和非空白字符的数量。
答案 0 :(得分:1)
这应该提供所需的输出。
public class Test {
public static void main(String[] args) {
String s = "abc 123 xyz";
String[] result = s.split("\\s+",2);
System.out.println("Result: "+result[1]);
}
}