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/\"/;
 
--HAPS

Reply via email to