The code below shows the original line of code and the fix for one of the two
problems. The other is similar.
My question is this: Is this a known issue, the failure of <CFIF> to properly
handle such strings?
TIA for your reply.
<!--- This fails when the string is "? 2002 Bee-lieve Product Concept Mfg.,
Inc." --->
<cfif CPYRT_TXT GT ""><font face="arial, geneva"
size="1">#Trim(CPYRT_TXT)#</font><br></cfif>
<!--- Removing >127 ASCII characters from the string solves the problem --->
<CFSET cpyrt = REReplace(CPYRT_TXT, "[#Chr(128)#-#Chr(255)#]", "", "ALL")>
cfif cpyrt GT ""><font face="arial, geneva"
size="1">#Trim(CPYRT_TXT)#</font><br></cfif>