如何在空格后第一次出现单词后获取剩余文本?

时间:2011-08-25 21:47:26

标签: java regex string matcher

示例:

abc     123 xyz

预期结果:

123 xyz

两个字符串可以用一个或多个空格字符分隔。该文本是有用的,并且不保证空白和非空白字符的数量。

1 个答案:

答案 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]);
    }
}