>> I'd like a regex that matches 'CD' but not 'ABCD' in any part of the
>> regex.
From: "Bruno Wolff III" <bruno(at)wolff(dot)to>
> Something like:
> (^.?CD)|([^B]CD)|([^A]BCD)
Thanks to Bruno, and to Dawid who replied offline. The above does the job
nicely.
Any plans for a Perl Compatible Regular Expression operator?
http://www.pcre.org/
Or are two regex operators enough?
Julian