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