Here is my regex: Regex r = new Regex("start(.*?)end", RegexOptions.Multiline);
That means I want to get the stuff between "start"
and "end"
. But the problem is that between start and end is a new line or
and the regex doesn't return anything.
So how do I make regex find
?