On Wed, 8 Feb 2006, Alex Dean wrote: > On Feb 8, 2006, at 8:01 AM, Shane Chrisp wrote: > > > @[0-9]\*.* > > This might be better : @[0-9].* > > I think \* means 'a literal *', because \ is an escape character. > That's the way it is in some other regex implementations (Perl & > PHP), anyway.
Indeed Alex, it works like you posted; and I can see that it's really greedy regexp; it matches thinks like [EMAIL PROTECTED], @01-stay-in-paris-hotels.com and @0-8-15.zzn.com without escaping anything more. Maybe I'll try to use anchors to refine this regexp. Thanks for your tip regards. __Abel
