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 paul"
into"
"hi" "i'm" "paul"
How do you represent white spaces in split() method using RegularExpression?