On Thu, 2010-03-25 at 14:52 +0100, Bart Kiers wrote:
> > On Thu, Mar 25, 2010 at 2:01 PM, Anders Sollander <
> > anders.sollan...@mathworks.de> wrote:
> >
> >> Hi,
> >>
> >> I've been trying to write a lexer rule for strings with strings in
> them,
> >> like
> >>
> >>        "This has a ""quoted string"" within"
> >>
> >> Is there a simple lexer rule for this, or do I need some kind of
> look
> >> ahead? 

fragment PART : '"' (options{ greedy=false; }: .)* '"' ;
STRING : PART+ ;



List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe: 
http://www.antlr.org/mailman/options/antlr-interest/your-email-address

-- 
You received this message because you are subscribed to the Google Groups 
"il-antlr-interest" group.
To post to this group, send email to il-antlr-inter...@googlegroups.com.
To unsubscribe from this group, send email to 
il-antlr-interest+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en.

Reply via email to