RE: [Declude.JunkMail] regEx question

2004-10-22 Thread Mark E. Smith
Stupid question but where/how can you use regEx in Declude? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Sent: Friday, October 22, 2004 4:46 PM To: [EMAIL PROTECTED] Subject: [Declude.JunkMail] regEx question Ok, I'm a bit of a newbit

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Scott Fisher
I saw code in here on how to remove HTML tags: http://juicystudio.com/tutorial/vb/regexp.asp - Original Message - From: Matt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 22, 2004 3:45 PM Subject: [Declude.JunkMail] regEx question Ok, I'm a bit of a newbit with regEx

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Matt
You can only do this with an external test that you create yourself. Matt Mark E. Smith wrote: Stupid question but where/how can you use regEx in Declude? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Matt Sent: Friday, October

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Bill Landry
- Original Message - From: Matt [EMAIL PROTECTED] Ok, I'm a bit of a newbit with regEx and I could really use some help with this one. I know how to detect all of the HTML in a file by using [^]*, but I'm not sure how to detect everything but the HTML. Could someone please help me

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Matt
Bill Landry wrote: Matt, you might try using the invert-match flag: -v -v, --invert-match Invert the sense of matching, to select non-match­ing lines. Unfortunately that isn't an option in VBScript. What I was really trying to do is return a string with just the HTML and not

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Bill Landry
- Original Message - From: Matt [EMAIL PROTECTED] Unfortunately that isn't an option in VBScript. What I was really trying to do is return a string with just the HTML and not what is before, after or in between it. When you execute a regEx expression in VBScript, it returns the

Re: [Declude.JunkMail] regEx question

2004-10-22 Thread Matt
Bill, It is limited as far as regEx goes with programming languages, and any sort of chaining is done one step at a time and requires you to code loops and do string manipulation to get what you are after. There's a big difference with how command line switches and chaining works with the