On Wed, Nov 4, 2009 at 8:14 PM, Bexley Hall <bexley401 at yahoo.com> wrote: > Hi, > > I want a regex that is essentially > > [\x20-\x60][\x80-\xFF][\x60-\xDF] > > but *excludes* \x22\x83\x78 Try this: [\x20-\x21\x23-\x60][\x80-\x82\x84-\xFF][\x60-\x77\x79-\xDF] Ryan