I\'m trying to find a way to split a String into an array of String(s), and I need to split it whenever a white spice is encountered, example
\"hi i\'m pa
You need a regular expression like "\\s+", which means: split whenever at least one whitespace is encountered. The full Java code is:
"\\s+"
try { String[] splitArray = input.split("\\s+"); } catch (PatternSyntaxException ex) { // }