On Mon, Jun 11, 2001 at 09:26:49PM -0400, Adam Russell wrote:
> in cases when presented with a  script( devloped on *nix)  that contains
> a /r (ASCII 13) would it help to simply replace the /r with a /13 so as
> to avoid the automatic conversion to a linefeed?

You mean \r...  What is the context of the carriage return character?  If
it's inside a double-quotish string, try changing the carriage return to
the two characters \ and r: Perl will interpolate those two characters to a
carriage return.  \015 and \x0D will work too.

Ronald

Reply via email to