Kai MacTane <[EMAIL PROTECTED]> wrote:

> /[>\s]\w{1}<[-\w\s\$&!]{0,150}>\w{1}\W/

Writing '{1}' serves no purpose.  It means "exactly one of the 
preceding thing", but the thing by itself already matches 
exactly once if there's no quantifier.  So you can write it 
this way:

   /[>\s]\w<[-\w\s\$&!]{0,150}>\w\W/

I must admit I'm puzzled about why Larry wants to limit the 
pattern to having only one letter on each side of the angle-
bracketed stuff.


-- 
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk

Reply via email to