Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why is my match success equal to false? I have tested the below pattern and input in Regexbuddy and it is successful.

string pattern = @"(?i)(<!-- START -->)(.*?)(?i)(<!-- END -->)";
string input = @"Hello
    <!-- START -->
    is there anyone out there?
    <!-- END -->";

Match match = Regex.Match(input, pattern, RegexOptions.Multiline);
if (match.Success) //-- FALSE!
{
    string found = match.Groups[1].Value;
    Console.WriteLine(found);
}

enter image description here

share|improve this question
Are you sure .NET accepts that syntax for case ignoring? – chico Jul 19 '12 at 5:21
@Chico: just tested it. yes. – Valamas - AUS Jul 19 '12 at 5:29
1  
The first (?i) makes everything after it case-insensitive, so the second one isn't doing anything useful. If you want to limit its effect, you can use this form: (?i:<!-- START -->). There's no need in this case though, since START and END are the only things it affects anyway. – Alan Moore Jul 19 '12 at 5:45

3 Answers

up vote 2 down vote accepted

Try this out

string pattern = @"(?is)(<!-- START -->)(.*?)(<!-- END -->)";
string input = @"Hello
    <!-- START -->
    is there anyone out there?
    <!-- END -->";

Match match = Regex.Match(input, pattern, RegexOptions.None);
if (match.Success) //-- FALSE!
{
    string found = match.Groups[1].Value;
    Console.WriteLine(found);
}

using s option forces your pattern to match . any character including \r and \n.

share|improve this answer

From: http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regexoptions.aspx

The RegexOptions.Multiline causes ^ and $ to change their meaning so they will match on any line of the input. It does not cause . to match \n. For that, you need to use RegexOptions.Singleline

share|improve this answer

Use single line option

Regex RegexObj = new Regex("(?i)(<!-- START -->)(.*?)(?i)(<!-- END -->)",
        RegexOptions.Singleline);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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