> On the contrary of what araq says, I never had problems of writing efficient 
> two line programs for such a task in a straightforward way.

No, what I say is true, here is what Python does:
    
    
     "a   b ".split(" ")
    ['a', '', '', 'b', '']
    
    
    
    Run

Reply via email to