putting a page break after instance of a certain character
3 Message(s) by 2 Author(s) originally posted in cold fusion
| From: ll |
Date: Tuesday, June 19, 2007
|
Hi,
I'm familiar, somewhat, with the replace
function and have replaced
carriage returns and
line feeds with
break s, yet I am now wanting to
insert a break after the occurrence of certain characters (e.g. @xxxxxxxxxxx) in
a string. Is there a good resource for this
type of situation?
Thanks,
Louis
| From: Carol |
Date: Wednesday, June 20, 2007
|
wrote in message:
Hi,
I'm familiar, somewhat, with the replace function and have replaced
carriage returns and line feeds with breaks, yet I am now wanting to
insert a break after the occurrence of certain characters (e.g. @xxxxxxxxxxx) in
a string. Is there a good resource for this type of situation?
Thanks,
Louis
Have you tried:
http://www.lookuptables.com/ - see if that helps.
| From: ll |
Date: Thursday, June 21, 2007
|
wrote in message:
wrote in message:
> Hi,
> I'm familiar, somewhat, with the replace function and have replaced
> carriage returns and line feeds with breaks, yet I am now wanting to
> insert a break after the occurrence of certain characters (e.g. @xxxxxxxxxxx) in
> a string. Is there a good resource for this type of situation?
> Thanks,
> Louis
Have you tried:
http://www.lookuptables.com/- see if that helps.Carol,
Thanks for that
link - that's a pretty valuable listing. I eventually
tried this and it worked:
-------------------------
<CFIF #emplEmailAddress1_text# NEQ "">
<A HREF="mailto:#emplEmailAddress1#">
#Replace(emplEmailAddress1_text,"@xxxxxxxxxxx","@xxxxxxxxxxx
<br>","all")#
</A>
<CFELSE>
</CFIF>
-------------------------
Many thanks for your help,
Louis
Next Message: CF gallery - member section