Yea...

Off hand I don�t know the code for the paragraph code.

What you could do is with a bit of text where you know there is a
paragraph char loop over it and use the ASC() command with it to output
the ascii code to it... Then track down the paragraph cmd and use chr().

Ie

<CFSET sSomeText = whatever>

<CFLOOP FROM="1" TO="#Len(sSomeText)#" INDEX="idxChar">
        <CFOUTPUT>
                #ASC(MID(sSomeText, idxChar, 1))#<BR>
        </CFOUTPUT>
</CFLOOP>


Then you should be able to work out the actual code to check for 

HTH

Mike


-----Original Message-----
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, May 15, 2001 15:28
To: CF-Talk
Subject: RE: finding special characters in a list


this doesn't seem to work, i need it to find the paragraph break, which
seems to be different than a carriage return/line feed....

<cfset errorText = Find(Chr(10) & Chr(13), mylist)>

 i have tried &para;, no luck...

--
Stephenie



-----Original Message-----
From: Mike Townend [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 15, 2001 8:42 AM
To: CF-Talk
Subject: RE: finding special characters in a list



What you will probably have to do is use the Find() function in
conjunction with the Chr() function.

Ie to find a carriage return in some text you would

Find(Chr(10) & Chr(13), mystring)

HTH

-----Original Message-----
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 14, 2001 21:43
To: CF-Talk
Subject: finding special characters in a list


i am trying to parse through a list and pull out a block of text, the
text i need ends with the paragraph symbol (when viewing special
characters in
CFStudio) anyone know how i can get cf list functions to recognize it?
pardon the possibly stupid question, but is this the same as carriage
return/line feed?


--
Stephenie
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to