8 messages in net.sourceforge.lists.courier-maildropRe: [maildropl] 6 or more occurances ...
FromSent OnAttachments
Kurt LieberOct 7, 2005 8:11 am 
Jay LeeOct 7, 2005 8:38 am 
Kurt LieberOct 7, 2005 9:12 am 
Tony EarnshawOct 7, 2005 10:11 am 
Tony EarnshawOct 7, 2005 10:26 am 
Kurt LieberOct 7, 2005 10:52 am 
moussOct 7, 2005 1:24 pm 
Sam VarshavchikOct 7, 2005 3:23 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [maildropl] 6 or more occurances of <pattern> in a stringActions...
From:mouss (use@free.fr)
Date:Oct 7, 2005 1:24:11 pm
List:net.sourceforge.lists.courier-maildrop

Kurt Lieber a écrit :

On Fri, Oct 07, 2005 at 07:12:57PM +0200 or thereabouts, Tony Earnshaw wrote:

if ( /\?{6,}/:h )

Well, they wouldn't. You forgot the \d, (or [:digit:]). \d{6,} should work. Oh, and you don't need to escape "{" nor "}".

I'm not trying to match numbers. I'm trying to match 6 or more occurances of a question mark.

\?{6,} does not work for me. (again, I'm using the non-PCRE 1.x version of maildrop)

"when in doubt, use brute force" if ( /\?\?\?\?\?\?+/)