> At least you can still use the (?: form, which > gives you the benefit of grouping without the side effects. > > regexp = /(?:\w)+/ > > or > > /"(?:\\"|[^"])*"/ > > > Guy N. Hurst Thanks Guy. That's exactly what I was looking for. Wayne