Hi, Someone can please tell about that I have emails in database and I want to show on my website like that original email e.g: member@domain.com want to show e.g: ***@domain.com How is it possible I have to use str_replece if yes then how please help me. Thank You. Altamash
I would do something like this: <CFSET inVar = "member@domain.com"> <CFSET domainVar = GetToken(inVar, 2, "@"> <CFSET outVar = "***@" & domainVar> <CFOUTPUT>#outVar#</CFOUTPUT> Code (markup): The function GetToken does wonders for things like this.