It's talking about stuff like this:

$_='a,b,c,d,e,f,g,h,i,j,k,l';
foreach $word (split /,/)
{
        print $word;
}

foreach $word (grep /blah/, @somearray)
{
        print $word;
}

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to