如何在逗号处分割字符串,以便保留所有空格。例:
Input: [" hello , world "]
需要将其分隔成数组,使其看起来像这样:
Array[0] = " hello " Array[1] = " world "
连接它们之后:
Output: " hello world "
尝试使用split这样的方法:input.split("\\s*,\\s*"))但是后来我将其分离而没有空格…
input.split("\\s*,\\s*"))
Array[0] = "hello" Array[1] = "world"
任何想法如何做到这一点?
String s = " hello , world "; String s1[] = s.split(","); System.out.println(s1[0]+s1[1]); output: hello world