How can I remove comments from CSS using Regex.Replace()?
Regex.Replace()
Note - I\'m not able to use the regex mentioned here in C# - Regular expression to remove CSS comm
Very late reply but thought it will be useful for some
"(?:/*(.|[\r\n])?/)|(?:(?([^)])//.)"
This will help removing css comments both singleline and multiline.