比如这样的web.config文件内容:
<?xml version="1.0" encoding="utf-8"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=301880 --> <configuration> <configSections> <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> </configSections> </configuration>
如何一次删除所有<!-- -->部分的内容?
试试用正则替换呗。
比如这样:
<!--.*?-->
选中那个“.*”的图标启用正则就是了。
这个试过了,不能匹配换行
@dudu: 既然默认不匹配换行, 那我们加上换行就是了:
<!--(.|\n)*?-->
@undefined: 帅!就这样可以搞定!