$text="  a b c d  e";
@list=split(/ /,$text);
results in
(,,a,b,c,d,,e,)
@list=split ' ',$text;
results in
(a,b,c,d,e,)