Jon Howe wrote: > > I am currently ripping apart some text files on my > linux box that where created on windows > > I am having a problem with things like ^M appearing > where I would expect \n and ~S where there should be a ' . > I can remove ^M with : > > s/\cM\n/\n/g; > > I assume this is some sort of char encoding problem > can some advise on the best way to deal with this.
Have a look at this program: http://www.fourmilab.ch/webtools/demoroniser/ John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
