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?