小编典典

如何在逗号处分割字符串但保留空格?

java

如何在逗号处分割字符串,以便保留所有空格。例:

Input: ["  hello  , world  "]

需要将其分隔成数组,使其看起来像这样:

Array[0] = "  hello  "
Array[1] = " world  "

连接它们之后:

Output: "  hello   world  "

尝试使用split这样的方法:input.split("\\s*,\\s*"))但是后来我将其分离而没有空格…

Array[0] = "hello"
Array[1] = "world"

任何想法如何做到这一点?


阅读 304

收藏
2020-11-30

共1个答案

小编典典

    String s = " hello , world ";
    String s1[] = s.split(",");
    System.out.println(s1[0]+s1[1]);

   output:  hello  world
2020-11-30