|
Majordomo-Users (May 1994) |
From: Brent Chapman <brent@GreatCircle.COM>
Date: Wed, 27 Apr 1994 21:05:38 -0700
> # Still hard to read. Why not simply
> #
> # # if there's a "|" or a "/" in it, it's hostile
> # if (m^|/^) {
> Because that matches, literally, "|/", not "|" or "/", which is the
> intent of the thing.
OK then:
if (m^[|/]^) {
cheers
mark
|