How to split string at comma but keep white spaces?

别来无恙 提交于 2019-12-20 05:46:15

问题


How to split string at comma so that it keeps all spaces. Example:

Input: ["  hello  , world  "]

Need to separate this in array so that it looks like this:

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

and after connecting them:

Output: "  hello   world  "

Tried using split like this: input.split("\\s*,\\s*")) but then I get it separated without white space...

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

Any ideas how to do this?


回答1:


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

   output:  hello  world 


来源:https://stackoverflow.com/questions/50326742/how-to-split-string-at-comma-but-keep-white-spaces

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!