For example, the following string: "  Hello  Wor$LD !! " should be converted to :
["  ","Hello","  ","Wor$LD"," ","!!"," "]
I tried to split the string using \b , but it fails when there are non-word characters, such as $ and !.
Note that all white spaced should be grouped together.
 
    