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
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…