> I was just looking for some help on how to take an email address
> and strip away the string to the left of the "@" sign and add "www."
> to the newly create string variable.

Didn't test it, but something along these lines should do the trick....

<CFSET EmailAddress = '[EMAIL PROTECTED]'>
<CFSET Domain = ListGetAt(EmailAddress, 2 , '@') >
<CFSET URL = 'www.' & Domain >

<CFOUTPUT>#URL#</CFOUTPUT>

-Cameron

--------------------
Cameron Childress
ElliptIQ Inc.
p.770.460.7277.232
f.770.460.0963
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to