Re: Need regular expression in REReplace for email

2006-11-01 Thread Tom Chiverton
On Tuesday 31 October 2006 16:41, Claude Schneegans wrote: Just write proper JavaScript, avoiding the nasty IE hacks and known specifics and it'll run in IE and FF without issue. If you just stick to what's standard, you will not go very far. Well, yes, innerHTML :-) But things like that

Re: Need regular expression in REReplace for email

2006-10-31 Thread Tom Chiverton
On Monday 30 October 2006 15:19, Claude Schneegans wrote: http://www.contentbox.com/claude/REwizard/index.cfm?p=h This product can be used only with Internet Explorer 5.5+ under Windows. Pfft. delete -- Tom Chiverton Helping to preemptively disseminate killer technologies

Re: Need regular expression in REReplace for email

2006-10-31 Thread Claude Schneegans
Just write proper JavaScript, avoiding the nasty IE hacks and known specifics and it'll run in IE and FF without issue. If you just stick to what's standard, you will not go very far. I do not use much Javascript in the public parts of my sites, si I can easily keep it compatible. But in the

Re: Need regular expression in REReplace for email

2006-10-31 Thread Charlie Griefer
On 10/31/06, Claude Schneegans [EMAIL PROTECTED] wrote: This product can be used only with Internet Explorer 5.5+ under Windows. Sorry about that. When I started this project, FireFox didn't even exist. Although the Javascipt code used in the REwizard is fairly complex, I'll be glad to

Re: Need regular expression in REReplace for email

2006-10-31 Thread Claude Schneegans
This product can be used only with Internet Explorer 5.5+ under Windows. Sorry about that. When I started this project, FireFox didn't even exist. Although the Javascipt code used in the REwizard is fairly complex, I'll be glad to update it for FF,... when they publish a decent docs about all

Re: Need regular expression in REReplace for email

2006-10-31 Thread Tom Chiverton
On Tuesday 31 October 2006 15:47, Claude Schneegans wrote: I'll be glad to update it for FF,... when they publish a decent docs about all features, Why bother* ? Just write proper JavaScript, avoiding the nasty IE hacks and known specifics and it'll run in IE and FF without issue. If a

Need regular expression in REReplace for email

2006-10-30 Thread Karl
I need to take any email address and transform it with a regular expression in a REReplace so that everything after the @ and before the FINAL period is replaced by the same number of asterisks as there are characters being replaced. So for example: [EMAIL PROTECTED] = [EMAIL PROTECTED]

Re: Need regular expression in REReplace for email

2006-10-30 Thread RichL
Hi Karl My regular expressions are very rusty to say the least.. but I had a go using string manipulation which you could put in to a UDF seems to work ok with a variety of emails and may at least get you started. I am sure that there is a better/easier way probably using regular

Re: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Heath
I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. You can get this app free of charge at http://regstudio.adampresley.com. Hope this helps. Bobby. --- Karl [EMAIL PROTECTED] wrote: I need to take any email address and

Re: Need regular expression in REReplace for email

2006-10-30 Thread Claude Schneegans
I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. I consider myself also as a gentleman, and I have such an application in CF online here : http://www.contentbox.com/claude/REwizard/index.cfm?p=h --

RE: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Hartsfield
, 2006 10:19 AM To: CF-Talk Subject: Re: Need regular expression in REReplace for email I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. I consider myself also as a gentleman, and I have such an application in CF online here

RE: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Hartsfield
maskedemail; } /cfscript cfoutput#maskemail('[EMAIL PROTECTED]')#/cfoutput and this one actually uses the variables I set hehe -Original Message- From: RichL [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 8:39 AM To: CF-Talk Subject: Re: Need regular expression in REReplace