Hello there i am having trouble building a regular expression for this strings
TOWN                 ALe   Alx   Aus   Bau   Bem   Bra   Clq   Crk   DLk
AlbertLea              -     -    22     -     -     -     -     -     -     -
What i want is to split the string including all the spaces between each token not a space for example the split string array will be something like this
[TOWN                 ,ALe   ,Alx   ,Aus   ,Bau   ,Bem   ,Bra   ,Clq   ,Crk   ,DLk]
[AlbertLea              ,-     ,-    ,22     ,-     ,-     ,-     ,-     ,-     ,-     ]
thank you.
 
     
    