Hugh Pierce wrote:
> 
> Using the lwp package to download files from one site in particular I notice
> that it contains ^M's, which are removed with:
> 
> s/\015$//;
> 
> but it also has \223 and \224 which I want to replace with "
> 
> This does not work:
> 
> s/\223/\"/;

maybe it does work, but not as you expected. Try

s/\223/"/g;

Another strategy would of course be to let us know what exactly doesn't work, idealy 
with
a small test case.

-w

-- 
To Perl, or not to Perl, that is the kvetching.
             -- Larry Wall in <[EMAIL PROTECTED]>

Reply via email to