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);
}

(?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, sinceSTARTandENDare the only things it affects anyway. – Alan Moore Jul 19 '12 at 5:45