ts a ñÄrit : >>>>>>"L" == Lionel Thiry <lthiry / skynet.be> writes: > > > L> It seems that (?!\\) doesn't fullfill its role of "match if re in (?!re) > L> doesn't match". What's wrong with my code? > > (?!re) is a zero-width negative look-*ahead* assertion. Apparently you > want a zero-width negative look-*behind* assertion which is (?<!re) and > implemented only in Oniguruma That's right, that's probably what I want... but how do I use oniguruma? Lionel Thiry