> > > I *think* you can get what you want using SpanNotQuery - something like the > following, using your "Microsoft Windows" example: > > SpanNot: > include: > SpanNear(in-order=true, slop=0): > SpanTerm: "Microsoft" > SpanTerm: "Windows" > exclude: > SpanNear(in-order=true, slop=0): > SpanTerm: "Microsoft" > SpanTerm: "Windows" > SpanRegex: "^\\p{Lu}.*" > > Steve > > > > This worked great, thank you guys!
-Max