Re: help me to replace ascii charecter with some other ascii charector or text

2003-01-29 Thread R. Joseph Newton
"John W. Krahn" wrote: > You might get some help by looking at the source for Demoronizer > > http://www.fourmilab.ch/webtools/demoroniser/ Hi John, Well, it was a cute read, I must say. The only problem is that I'm not sure quite what application he was talking about. You see, I just tested

Re: help me to replace ascii charecter with some other ascii charector or text

2003-01-29 Thread John W. Krahn
"R. Joseph Newton" wrote: > > If you want to actually use the non-ASCII characters contained in MS Word, > you will have to learn the wider character set used. You may also need to > come up with a list of MS Word control characters. You might get some help by looking at the source for Demoroniz

Re: help me to replace ascii charecter with some other ascii charector or text

2003-01-28 Thread R. Joseph Newton
Kais, Those are not ASCII characters. Nor arem ost of them control characters. They are extended charcters, based on an unsigned, rather than signed, char type. ASCII proper only extends to character 127, the upward-pointing triangle [or the character so rendered by my command environment].

Re: help me to replace ascii charecter with some other ascii charector or text

2003-01-28 Thread John W. Krahn
Kasi ramanathen wrote: > > dear friends i'm in work place and i'm facing a problem of replacing an > ascii character with some other ascii character i cut the ascii character > from my word document and pasted it in my pear programme but the result > is not as i expected. plese give me answer with

Re: help me to replace ascii charecter with some other ascii charector or text

2003-01-28 Thread David Eason
For starters, it looks like most of your replacements should use the tr/// function (also known as y///). http://www.perldoc.com/perl5.8.0/pod/perlop.html For seconds, $ln=~s/'/'/gis; looks like a no-op to me. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

help me to replace ascii charecter with some other ascii charector or text

2003-01-28 Thread kasi ramanathen
dear friends i'm in work place and i'm facing a problem of replacing an ascii character with some other ascii character i cut the ascii character from my word document and pasted it in my pear programme but the result is not as i expected. plese give me answer with simple codeing and also say m