i am trying to match strings that dont contain quotation marks but they can contain escaped quotation marks.

when i say string i mean quotation marks and a string inside them.

i am using this regular expression but it does not work.

\"(?![^\\\\]\")\"

solution:

@"""[^""\\\r\n]*(?:\\.[^""\\\r\n]*)*"""

the code (c#)

MatchCollection matches = Regex.Matches(input,@"""[^""\\\r\n]*(?:\\.[^""\\\r\n]*)*""");
        foreach (Match match in matches)
        {
            result += match.Index + " " + match.Value + System.Environment.NewLine ;
        }
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

"[^"\\\r\n]*(?:\\.[^"\\\r\n]*)*"

http://www.regular-expressions.info/examplesprogrammer.html

Note that you'll need to escape certain chars properly (depending on what string literal you use)! The following demo:

using System;
using System.Text.RegularExpressions;

class Program
{
  static void Main()
  {
    string input = "foo \"some \\\" text\" bar";

    Match match = Regex.Match(input, @"""[^""\\\r\n]*(?:\\.[^""\\\r\n]*)*""");

    if (match.Success)
    {
      Console.WriteLine(input);
      Console.WriteLine(match.Groups[0].Value);
    }
  }
}

will print:

foo "some \" text" bar
"some \" text"
link|improve this answer
this doesnt work – jaywayco Jul 7 '11 at 8:24
1  
@jaywayco, Post non matched examples – Kirill Polishchuk Jul 7 '11 at 8:25
it should match this blah\"blah and not this blah"blah – jaywayco Jul 7 '11 at 8:31
@jaywayco, it works fine. See the demo. – Bart Kiers Jul 7 '11 at 8:34
1  
@yossi, it depends on the string literal you choose. You only need to escape the " by adding another " in front of it when using the @"..." literal, as can be seen by running the demo. – Bart Kiers Jul 7 '11 at 9:20
show 5 more comments
feedback

Try this

[^"\\]*(?:\\.[^"\\]*)*
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.