SPUG: Regex that matches everything except a specific string

ced at carios2.ca.boeing.com ced at carios2.ca.boeing.com
Thu Nov 6 13:40:34 CST 2003


> if ($address !~ /^richard\@richard-anderson\.org$/) { print "Spam\n" }

...

if ( $address =~ /.*(?<!richard at richard-anderson\.org$/ ) {
    print "ok\n";
} else {
    print "spam";
}

--
Charles DeRykus



More information about the spug-list mailing list