in reply to Re^2: regex for negating a sequence
in thread regex for negating a sequence

nice. My first attempt was trying to do it like that, but i started with something like:
/\x26\x67(.(?!\x26\x67)){7}./s
which doesn't work for the case of consectutive sequences.. i just didn't think of putting the look-ahead behind the dot :)