I do not understand the behavior. I have such example, need to catch html comment.
var str = '.. <!--My -- comment test--> ';
var regex1 = /<!--[.]*-->/g;
var regex2 = /<!--.*-->/g;
alert(str.match(regex1)); // null
alert(str.match(regex2)); // <!--My -- comment test-->
The second regex regex2 works fine, outputs exactly what's needed. The first shows null. And I don't understand the difference. RegExpressions <!--[.]*--> and <!--.*--> mean the same - "after <!-- take ANY character except newline in quantity from 0 to as many as possible and finish with -->". But for the second it works and for the first does not. Why?
UPD. I've read comments and have an update.
var str3 = '.. <!--Mycommenttest--> ';
var str4 = '.. <!--My comment test--> ';
var regex3 = /<!--[\w]*-->/g;
var regex4 = /<!--[\s\S]*-->/g;
alert(str.match(regex3)); // <!--Mycommentstest-->
alert(str.match(regex4)); // <!-- My comment test -->
So it's possible to use limited matching variables to match anything. So which way should be used to use RegExps right way? With [] or without them? Can't get the difference, both give the right output.
<!-- Comment --> (Content) <!-- Another Comment -->. I suspect that is not what you want. – Jason Burbage Feb 3 at 17:53<!-- foo -- bar -->is an invalid HTML/SGML comment. – Phrogz Feb 3 at 18:29