0

我正在尝试使用正则表达式从 .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 语言的代码。任何意见将是有益的。谢谢!

4

2 回答 2

6

使用这个正则表达式/<!--.*?-->/gs

于 2012-07-04T13:08:40.097 回答
5

使用问号使星号变得懒惰:

/<!--.*?-->/gs
于 2012-07-04T13:22:09.937 回答