in reply to How Do I Use Net::FTP

I assume it's just an example snippet, but be aware that 00000001.610 and "00000001.610" are very different.
perl -le 'sub x{print shift}; x("0000001.610")' # 0000001.610 perl -le 'sub x{print shift}; x(0000001.610)' # 1610

Replies are listed 'Best First'.
Re^2: How Do I Use Net::FTP
by Doyle (Acolyte) on May 17, 2005 at 15:48 UTC
    You assumed correctly.