Many thanks!
Can you point me to some book or doc or man that says things in fairly
plain english as you did???  I'm finding a lot of docs on regexps that
are hard to translate when you are just starting out like me.  They
don't seem to say things like:
> The "." means "any character", so ".*" means "any string of characters".

Also, question: I understand the leading .* based on your remark, but
what about the trailing .* ??  The TO address should always end with t
the ".com" - is there a need for it, or were you just being ultra
cautious to get everything possible?

THANKS AGAIN!
Bruce.


On Sat, Feb 17 03:58AM, Nollaig MacKenzie wrote:
> 
> On 2001.02.16 23:23:57, you,
>  the extraordinary Bruce A. Petro, opined:
> 
> > 
> > Hi - I'm new at regexp's and don't know how to do this...
> > 
> > The main question is from procmail regexp I did that is
> > not working.  I want it to find all mail where the TO:
> > contains "@about.com" ("[EMAIL PROTECTED], [EMAIL PROTECTED]).
> > Any suggestions why its not working?
> > :0:
> > * ^[EMAIL PROTECTED]
> > about.com
> > 
> Try:
> 
> :0:
> * ^To: .*about.com.*
> about.com
> 
> The "." means "any character", so ".*"
> means "any string of characters".
> 
> Cheers, N.
> 
> -- 
> Nollaig MacKenzie <[EMAIL PROTECTED]>
>       http://www.amhuinnsuidhe.cx
> Oppose renaming Mt Logan!! http://www.savemtlogan.com

Reply via email to