Re: Converting ASCII characters

2002-11-05 Thread W Luke
Jochem van Dieten [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... If string is the string you want fixed: #Evaluate('REReplaceNoCase(string,##([0-9]+);,'##Chr(\1)##',A ll)')# But I am sure Ray will now join and tell us that Evaluate() is evil :) Thanks Jochem - I'm not gonna

Converting ASCII characters

2002-11-04 Thread W Luke
Hi. I have a page which enters details via an array into a DB. At the moment, some of the items in the array contain ASCII characters which I need to convert to their proper symbols. For example: James#39; fear of spiders I presume this should read James' fear of spiders. I'd like to convert

RE: Converting ASCII characters

2002-11-04 Thread Robertson-Ravo, Neil (REC)
chr(number) should give you the appropriate character. -Original Message- From: W Luke [mailto:will;lukrative.com] Sent: 04 November 2002 12:18 To: CF-Talk Subject: Converting ASCII characters Hi. I have a page which enters details via an array into a DB. At the moment, some

Re: Converting ASCII characters

2002-11-04 Thread W Luke
Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] wrote in message news:AFDBA0DE939BD41195290008C7A448A954D62B@RECCSDEXC2... chr(number) should give you the appropriate character. Hi Neil. That's what I had planned on using, but I'm not sure how I can loop round a string to detect *any* ASCII chr

Re: Converting ASCII characters

2002-11-04 Thread Stephen Moretti
Will, I have a page which enters details via an array into a DB. At the moment, some of the items in the array contain ASCII characters which I need to convert to their proper symbols. For example: James#39; fear of spiders I presume this should read James' fear of spiders. I'd like to

Re: Converting ASCII characters

2002-11-04 Thread Jochem van Dieten
W Luke wrote: I have a page which enters details via an array into a DB. At the moment, some of the items in the array contain ASCII characters which I need to convert to their proper symbols. For example: James' fear of spiders I presume this should read James' fear of spiders. I'd like