本文介绍了使用正则表达式,除去CSS注释的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用我如何可以删除CSS注释 Regex.Replace()

How can I remove comments from CSS using Regex.Replace()?

请注意 - 我无法在这里使用在C#中提到的正则表达式 - 的。

Note - I'm not able to use the regex mentioned here in C# - Regular expression to remove CSS comments.

推荐答案

这是通常不够(假定 cssLines 是包含你的CSS文件中的所有行字符串):

That would be normally enough (assuming cssLines is a string containing all lines of your CSS file):

 Regex.Replace(cssLines, @"/\*.+?\*/", string.Empty, RegexOptions.Singleline)

请注意,单线选项将允许匹配多行注释。

Please note that the Singleline option will allow to match multi-line comments.

这篇关于使用正则表达式,除去CSS注释的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 22:04