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'.
--
,-/- __ _ _
\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
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