Visual Studio中的RegEx删除其中的区域和内容

时间:2014-01-14 20:04:17

标签: regex visual-studio

我正在使用Visual Studio 2010搜索和替换。 我想在我的文件中搜索所有区域,并将其与内容一起删除

例如,

#region Blah

These are the contents of Blah
Line 2 of blah is even more interesting
blah blah blah blah.........

#endregion

我想删除上面的所有内容。

1 个答案:

答案 0 :(得分:3)

使用此:

\#region[\s\S]*?\#endregion.*$

使用多行和全局修饰符。示例:http://regex101.com/r/hL0vA5