I freely admit that my comprehension of regular expressions is spotty. That said, I can't make head or tail of this. This only happens in Chrome.
I have this bit of code to pull out the text between body tags in an HTML string:
var extractBodyHtml = function (obj) {
var regex = /<body.*?>([\s\S]*?)<\/body>/g;
//if (obj.match(regex)) {
if (regex.test(obj)) {
return RegExp.$1;
} else {
return obj;
}
};
Update
I cannot reproduce this in a fiddle. In fact the exact same code works in one place, against the same HTML, but not another. Lest you think I am crazy here's the debugger.

Note the commented line. That was the first version. It worked, sometimes. In other situations, RegExp.$1 would return just a single character, "r". This is always reproducible for a particular situation.
Note that obj.match(regex) always returns the correct match (including the body tags) but accessing the backreference would give the "r" sometimes.
When I changed the code to regex.test(obj) things always work correctly, and RegExp.$1 returns the inner content.
What am I doing wrong?
document.body.innerHTML? – Matt Aug 26 '11 at 14:52