Hi.
I'm trying to come up with a single regex that will match a string as long as it does not contain a particular pattern. This would be easy, except that I would like to do it without using the !~ operator. Variants of m|^.*($!badstuff)| do not work for reasons explained in "man perlre". Any other way to do this? Note: I'm working with a piece of software that makes use of regular expressions, but apparently it cannot do negative matches with something like !~, so this sparked my curiosity about how to negative match without !~. Thanks.