vote up 3 vote down star

I've encountered the need to remove comments of the form:

<!--  Foo

      Bar  -->

I'd like to use a regular expression that matches anything (including line breaks) between the beginning and end 'delimiters.'

What would a good regex be for this task?

flag

4 Answers

vote up 5 vote down check

The simple way :

Regex xmlCommentsRegex = new Regex("<!--.*?-->", RegexOptions.Singleline | RegexOptions.Compiled);

And a better way :

Regex xmlCommentsRegex = new Regex("<!--(?:[^-]|-(?!->))*-->", RegexOptions.Singleline | RegexOptions.Compiled);
link|flag
For my simple test case, <!--(?:[^-]|-(?!->))*--> is equivalent to my own: <!--([\s\S]*?)--> Is mine missing something? – Charlie Salts Dec 28 '08 at 5:57
There is difference only in performance. According to my tests yours takes 118 steps to complete while mine takes 62 :) – Diadistis Dec 28 '08 at 6:10
i don't know about .net's regex library but many regex compilers have optimizations for .*? so that it's much faster than the naive case – ʞɔıu Dec 28 '08 at 7:13
vote up 5 vote down

NONE. It cannot be described by the context free grammar, which the regular expression is based upon.

Let's say this thread is exported in XML. Your example (<!-- FOO Bar -->), if enclosed in CDATA, will be lost, while it's not exactly a comment.

link|flag
vote up 4 vote down

The 'proper' way would be to use XSLT and copy everything but comments.

link|flag
I have not much experience with XSLT - but that's something I might try in the future. – Charlie Salts Dec 28 '08 at 16:55
vote up 0 vote down

Parsing XML with regex is considered bad style. Use some XML parsing library.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.