On Jun 20, 2:46 pm, Carol <csch...@[EMAIL PROTECTED]
> wrote:
> On Jun 19, 1:17 pm, ll <barn104_1...@[EMAIL PROTECTED]
> wrote:
>
> > 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. @[EMAIL PROTECTED]
) 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,"@[EMAIL PROTECTED]
","@[EMAIL PROTECTED]
>","all")#
</A>
<cfelse>
</cfif>
-------------------------
Many thanks for your help,
Louis


|