To: Jobst Schmalenbach <jobst@xxxxxxxxxxxxxx>, slug@xxxxxxxxxxx
Subject: Re: [SLUG] (non) greediness in regexp ...
From: dichro@xxxxxxxxxxxxxxxxxxxxxxxx (Mikolaj J. Habryn)
Date: Tue Sep 18 16:44:01 2001
User-agent: Mutt/1.3.20i
On Tue, Sep 18, 2001 at 04:30:30PM +1000, Jobst Schmalenbach wrote:
> ".*@.*"
> I want to match only the last quoted string eg ".*@.*
> where the " is the last before the @
"[^"]*@[^"]*"
m.