vote up 4 vote down star
1

I need a Perl regular expression to match a string. I'm assuming only double-quoted strings, that a \" is a literal quote character and NOT the end of the string, and that a \ is a literal backslash character and should not escape a quote character. If it's not clear, some examples:

"\""    # string is 1 character long, contains dobule quote
"\\"    # string is 1 character long, contains backslash
"\\\""  # string is 2 characters long, contains backslash and double quote
"\\\\"  # string is 2 characters long, contains two backslashes

I need a regular expression that can recognize all 4 of these possibilities, and all other simple variations on those possibilities, as valid strings. What I have now is:

/".*[^\\]"/

But that's not right - it won't match any of those except the first one. Can anyone give me a push in the right direction on how to handle this?

flag
Can you even do this regex? I think you'd need a state machine. – Paul Tomblin Jan 26 at 20:53
1  
Regexps can do pretty much everything that doesn't require recursion (though even that can be tackled in modern Perl versions using some really hairy code). – Leon Timmermans Jan 27 at 0:56

4 Answers

vote up 4 vote down check

How about this?

/"([^\\"]|\\\\|\\")*"/

matches zero or more characters that aren't slashes or quotes OR two slashes OR a slash then a quote

link|flag
I guess I was wrong. Cool. – Paul Tomblin Jan 26 at 20:59
Paul: strings can be matched by regexes, however parenthesised expressions (and anything else that can nest arbitrarily deep) cannot. – j_random_hacker Jan 26 at 22:10
This regex has false positives on strings such as """ – Leon Timmermans Jan 26 at 22:46
Cal: I think you need to double all of those backslashes. (Maybe you already did, and SO stripped them out?) – j_random_hacker Jan 26 at 22:48
1  
You need to "code-ify" the regex: either enclose it in backticks, or indent it four spaces and leave empty lines above and below it. – Alan Moore Jan 27 at 6:40
show 5 more comments
vote up 8 vote down

/"(?:[^\\"]|\\.)*"/

This is almost the same as Cal's answer, but has the advantage of matching strings containing escape codes such as \n.

The ?: characters are there to prevent the contained expression being saved as a backreference, but they can be removed.

link|flag
vote up 5 vote down

A generic solution(matching all backslashed characters):

/ \A "               # Start of string and opening quote
  (?:                #  Start group
    [^\\"]           #   Anything but a backslash or a quote
    |                #  or
    \\.              #   Backslash and anything
  )*                 # End of group
  " \z               # Closing quote and end of string
  /xms
link|flag
vote up 3 vote down

See Text::Balanced. It's better than reinvent wheel. Use gen_delimited_pat to see result pattern and learn form it.

link|flag

Your Answer

Get an OpenID
or

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