Hi,

I need some clarification :-

Q1)    Can I use the split function to split an existing array (with several elements 
) such as the example below.

Q2)    Could it be that the split function can only be used to split a scalar (one 
element).

Q3)    Could someone explain to me the reason why @readagain return the number 4, and 
$#readagain return 0.

@read = ("hi please", "help me", "on this" , "problem");
@readagain = split (/whatever/, @read);

print "What happened here, it return 4 =>", @readagain,"\n";

##########



Thanks


Reply via email to