Matt Sergeant wrote: > >Wouldn't an easier fix be: > >/^([A-Z]|[^a-z])*$/ > Interesting. [^a-z] includes [A-Z]. It also matches a zero-length string. How about
/^(?:[A-Z]|[^A-Za-z])+$/
???
--
http://www.pricegrabber.com | Dog is my co-pilot.
_______________________________________________
Spamassassin-talk mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/spamassassin-talk
