java - 如何拆分字符串,同时保留分隔符?

  • 目标:将I have a good friend. shi is beautiful!拆分成I have a good friend.she is beautiful!,拆分符号是.(点后面有个空格)。
  • 困难:普通的split()会把.去掉。
  • 解决方案:str.split("(?<=\\. )");
  • 测试下:
    public static void main(String[] args) {
        String str = "I have a good friend. shi is beautiful!";
        String[] s1 = str.split("\\. ");
        for (String string : s1) {
            System.out.println(string);
        }

        System.out.println("");
        System.out.println("");

        String[] s2 = str.split("(?<=\\. )");
        for (String string : s2) {
            System.out.println(string);
        }
    }

java - 如何拆分字符串,同时保留分隔符?_第1张图片
详细参考:java - 如何拆分字符串,同时保留分隔符?

你可能感兴趣的:(java基础)