You can't use REFindAll because the RegExp uses a look behind, which is not
supported in CF directly. That's why you have to create a java pattern
matcher... If you wanted to uses REFindAll... You could do something like:

"\([EMAIL PROTECTED])"

And then when you get the matches you could take the Mid to remove the ( ):

strEmail = Mid( strText, objMatches.Pos[0] + 1, objMatches.Len[0] - 1 );


Something like that... 
.......................
Ben Nadel 
www.bennadel.com


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238108
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to