Strip ascii 128 and above

2005-09-09 Thread Kevin Bridges
Is there a simple way to strip out all characters above ascii 127 from a string? Thanks, Kevin Bridges ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting

Re: Strip ascii 128 and above

2005-09-09 Thread Kevin Bridges
Ok I answered my own question: for (i = 128; i LTE 159; i = i + 1) text = Replace(text, Chr(i), , All); Kevin Bridges wrote: Is there a simple way to strip out all characters above ascii 127 from a string? ~| Discover

RE: Strip ascii 128 and above

2005-09-09 Thread Ben Nadel
[mailto:[EMAIL PROTECTED] Sent: Friday, September 09, 2005 9:44 AM To: CF-Talk Subject: Re: Strip ascii 128 and above Ok I answered my own question: for (i = 128; i LTE 159; i = i + 1) text = Replace(text, Chr(i), , All); Kevin Bridges wrote: Is there a simple way to strip out all characters

RE: Strip ascii 128 and above

2005-09-09 Thread Ben Nadel
I wrote a function that replaces high ascii values with visually equivalent values. cffunction name=ReplaceExntededAscii access=public returntype=string output=no hint=This attemps to replace the extended ascii characters with what could visually be considered the standard ascii equivalent.