From: ts Date: 2004-10-13T23:30:28+09:00 Subject: Re: [nuby] it seems that (?!...) doesn't work for me >>>>> "L" == Lionel Thiry 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 (?