标签: 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
我想删除上面的所有内容。
答案 0 :(得分:3)
使用此:
\#region[\s\S]*?\#endregion.*$
使用多行和全局修饰符。示例:http://regex101.com/r/hL0vA5