This content has been marked as final.
Show 3 replies
-
1. Re: How to get 'name' from 'name@domain.com' using cf reg ex?
BKBK May 26, 2014 1:54 PM (in response to happysailingdude)You may treat it as a list with delimiter @:
<cfset myString = 'name@domain.com' >
<cfset namePart = listGetAt(myString,1,"@")>
-
2. Re: How to get 'name' from 'name@domain.com' using cf reg ex?
BKBK May 27, 2014 12:20 AM (in response to happysailingdude) -
3. Re: How to get 'name' from 'name@domain.com' using cf reg ex?
happysailingdude May 29, 2014 5:48 AM (in response to happysailingdude)I used this one in the end - nice one Dan
Thank you.
Nick

