From: Robo Date: 2003-06-11T01:46:41+09:00 Subject: Re: OT: Regexp question > With these names it works, but not for example with "New York". Then it > matches only "New"... > > Yes, I'm new to regexp... > > bye! > Dominik > > > With these names it works, but not for example with "New York". Then it > matches only "New"... > > Yes, I'm new to regexp... > > bye! > Dominik Mmm, try this one: r = /([^(]*)/ Robo