我正在尝试使用正则表达式从 .html 文件中删除所有 html 注释。我们知道html评论格式是<!-- some comments -->
我创建了这样的正则表达式
/<!--.*-->/gs
它可以工作,但如果文件中有多个注释块,它不会将任何一个块剥离到另一个块,而是从第一个<!--
到最后一个-->
Fe
some html tags
<!-- some comments 1 -->
some html tags 2
<!-- some comments 2-->
它剥离整个
<!-- some comments 1 -->
some html tags 2
<!-- some comments 2-->
我是 ActionScript 语言的代码。任何意见将是有益的。谢谢!