Re: [Perl-unix-users] removing tabs

2003-08-30 Thread $Bill Luebkert
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'. -- ,-/- __ _ _

Re: [Perl-unix-users] removing tabs

2003-08-30 Thread Anthony Ettinger
\t --- Johnno <[EMAIL PROTECTED]> wrote: > Hello All, > > what do i use to remove tabs... ie I use this to > remove linefeeds > > $line[$x] =~ s/\r//g; # remove linefeeds > > Many Thanks, >Johnno > ___ > Perl-Unix-Users ma

[Perl-unix-users] removing tabs

2003-08-29 Thread Johnno
Hello All, what do i use to remove tabs... ie I use this to remove linefeeds $line[$x] =~ s/\r//g; # remove linefeeds Many Thanks, Johnno ___ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.Act