Johnno wrote:

> Hello All,
> 
> what do i use to remove tabs...  ie I use this to remove linefeeds
> 
> $line[$x] =~ s/\r//g; # remove linefeeds

That removes carriage returns - not linefeeds (\n).
Use '\t' for tabs in place or your '\r' or use octal
'\011' or hex '\x09'.

-- 
  ,-/-  __      _  _         $Bill Luebkert    Mailto:[EMAIL PROTECTED]
 (_/   /  )    // //       DBE Collectibles    Mailto:[EMAIL PROTECTED]
  / ) /--<  o // //      Castle of Medieval Myth & Magic http://www.todbe.com/
-/-' /___/_<_</_</_    http://dbecoll.tripod.com/ (My Perl/Lakers stuff)

_______________________________________________
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to