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

时间:2018-05-14 09:10:19

标签: java arrays string split concatenation

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

Input: ["  hello  , world  "]

需要在数组中将其分开,使其看起来像这样:

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

并在连接后:

Output: "  hello   world  "

尝试使用这样的分割:input.split("\\s*,\\s*"))然后我将它分开而没有空格...

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

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

1 个答案:

答案 0 :(得分:2)

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

   output:  hello  world