On Tue, 23 Aug 2005 06:17:11 -0700, I wrote:
>   $last_word = (split /\s/, $row->[1]//)[-1];

I seem beset by typos today.  Don't know where that // came from. Should
be:

   $last_word = (split /\s/, $row->[1])[-1];

-- 
Peter Scott
http://www.perlmedic.com/
http://www.perldebugged.com/


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


Reply via email to