--- yitzle <[EMAIL PROTECTED]> wrote:

> Note: split splits on whitespace by default, so these two are the same:
> split /\s+/, @array;
> split @array;
> 

Not right.You split a string,not an array or a list.
all below are wrong:
split @array;
split (11,22,33);
split $string;

see `perldoc -f split`.


      
____________________________________________________________________________________
Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage.
http://au.docs.yahoo.com/mail/unlimitedstorage.html


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to