From: Justin Collins Date: 2006-03-29T04:03:31+09:00 Subject: Re: Regexp to match strings that _don't_ being with a string Wes Gamble wrote: > Hey that's too easy!!! > > Thanks James. > > I'm liking Ruby more and more :). > > Wes > > James Gray wrote: > >> On Mar 28, 2006, at 12:40 PM, Chris Alfeld wrote: >> >> >>> ! s =~ /^xyz/ >>> >> Ruby has a doesn't match operator for this: >> >> s !~ /^xyz/ >> >> James Edward Gray II >> Awesome. -Justin