Re: Special characters

2003-12-28 Thread J. Alejandro Ceballos Z.
yes, I agree, in fact we should take care about observing the 3 digits (#064; instead of #64;) maybe something like $cString =~ s/([\x7f-\xff])/'#'.ord($1).';'/ge; will fix the matter. In my experience, the numeric escapes where available seem to be more universal between browsers. --

Re: Special characters

2003-12-28 Thread Octavian Rasnita
Oh thank you. I just wanted to make that regexp and it saved me the time. Teddy From: J. Alejandro Ceballos Z. [EMAIL PROTECTED] Subject: Re: Special characters yes, I agree, in fact we should take care about observing the 3 digits (#064; instead of #64;) maybe something like $cString