I'm experimenting to learn flex and would like to match string literals. My code currently looks like:

"\""([^\n\"\\]*(\\[.\n])*)*"\""        {/*matches string-literal*/;}

I've been struggling with variations for an hour or so and can't get it working the way it should. I'm essentially hoping to match a string literal that can't contain a new-line (unless it's escaped) and supports escaped characters.

I am probably just writing a poor regular expression or one incompatible with flex. Please advise!

link|improve this question
Thanks so much everyone! All your comments were very helpful. The regex that has finally worked for me is a variant of the one used in the C specification linked by codadict (and explained by Jonathan): \"(\(.|\n)|[^\\"\n])*\" – Thomas Jan 11 '10 at 4:12
Since you found Jonathan's answer helpful, consider adding an upvote for his answer. – codaddict Jan 11 '10 at 4:17
By the way: nowhere in your question do you specify what language's string literals you're interested in. It's a very good idea to put the language you're asking about in one of the question's tags. – Laurence Gonsalves Jan 11 '10 at 5:14
feedback

4 Answers

up vote 13 down vote accepted

You'll find these links helpful

link|improve this answer
I registered for the site, but it still wont let me up-vote since this was my first question. – Thomas Jan 11 '10 at 4:44
@Thomas: Oh I see, not a problem, I'll do that on your behalf :) – codaddict Jan 11 '10 at 5:02
feedback

A string consists of a quote mark

"

followed by zero or more of either an escaped anything

\\.

or a non-quote character

[^"]

and finally a terminating quote

"

Put it all together, and you've got

"(\\.|[^"])*"
link|improve this answer
+1, for the clear explanation of whats going on. – codaddict Jan 11 '10 at 5:03
This doesn't handle escaping, unfortunately. So this would incorrectly lex "\"" – Paul Biggar Aug 1 '10 at 12:55
1  
You must have missed "zero or more of an escaped anything"? – Jonathan Feinberg Aug 2 '10 at 1:48
1  
There are several problems with this answer. First, it's not a valid flex pattern. The leading and trailing double-quotes need to be escaped because otherwise flex treats them as meta-characters. So the pattern should be (perhaps) \"(\\.|[^"])*\" . Second, that pattern still doesn't work. For example, it gets this input wrong: "\\\\" . Third, it doesn't meet the original question's requirement of disallowing newlines. – rob mayoff Jul 27 '11 at 1:13
As a regex, this is totally correct. Except for the newline thing, which is easily fixed by replacing . with [^\n] and [^"] with [^"\n]. It certainly should match "\\\\" too, since the repetition will match the quote ", then the escaped slash \\ , then the next escaped slash \\ , then the terminating quote ". The pattern certainly works for me outside of the scope of flex. – d11wtq Nov 15 '11 at 10:38
feedback

How about using a start state...

int enter_dblquotes = 0;

%x DBLQUOTES
%%

\"  { BEGIN(DBLQUOTES); enter_dblquotes++; }

<DBLQUOTES>*\" 
{ 
   if (enter_dblquotes){
       handle_this_dblquotes(yytext); 
       BEGIN(INITIAL); /* revert back to normal */
       enter_dblquotes--; 
   } 
}
         ...more rules follow...

It was similar to that effect (flex uses %s or %x to indicate what state would be expected. When the flex input detects a quote, it switches to another state, then continues lexing until it reaches another quote, in which it reverts back to the normal state.

Hope this helps, Best regards, Tom.

link|improve this answer
Overly complex isn't it? – samoz Jun 4 '10 at 19:50
1  
@Samoz: Not really, it's actually used in languages where string literals are used, it eats up what's between a beginning quote and an end quote, even if there's extra quotes inside it hence the usage of switching states in order to chew up the quotes... – t0mm13b Jun 4 '10 at 23:39
1  
The flex manual contains a full example (in terms of flex usage) of parsing C-style strings: flex.sourceforge.net/manual/Start-Conditions.html . Search for "quoted strings" on that page. – rob mayoff Jul 27 '11 at 1:22
feedback

For a single line... you can use this:

\"([^\\\"]|\\.)*\"  {/*matches string-literal on a single line*/;}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.