On Mon, 16 Jul 2001, System Administrator wrote:
> This is for newbies, right? Can anyone tell me why a s/^M//g won't get
> rid of the annoying ^M on the end of each line of an imported Paradox
> database?
I know you've had one solution to this problem already but as TMTOWTDI ...
^M is the carriage return character, used in windows but not Unix. It can
be represented in Perl by \r.
So: s/\r//g should also work.
Best wishes,
Rachel Coleman
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]