I have a couple paragraph text that need to parse through. Problem is that
there several "#" signs in it. So doing Find/Replaces create problems. How can
I use cold fusion to simply remove them? #ReplaceNoCase(thetext,'#','','All')#
obviously doesnt work. Is there are Char() value for the pound I can use?
Stressed_Simon - 31 Jan 2006 07:24 GMT
Or you can just escape them:-
#ReplaceNoCase(thetext,'##','####','All')#