最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Why RegExp generates an error of "unexpected quantifier" on IE8? - Stack Overflow

programmeradmin0浏览0评论

I have a Javascript error that have been reported to me and unfortunately I've no idea on how to reproduce it. IE8 Developer Tools reports the following error: Unexpected quantifier. The following row produces the error:

var g=RegExp(d+"=([^|]*)").exec(j); //output from closure-piler

I guess I have to escape properly the pipe like that (\\|) to fix the problem, but I don't know if I'm right because I don't know how to reproduce the error.

Any suggestions or solutions are wele.

Thanks.

[UPDATE]

The values of d are the keys of __utmz cookie values which I'm trying to retrieve and they are listed in an array like this ["utmccn", "utmcmd", /* ... */]. Well now there's not so much I can do, I'm at home with my friend the flu.

I have a Javascript error that have been reported to me and unfortunately I've no idea on how to reproduce it. IE8 Developer Tools reports the following error: Unexpected quantifier. The following row produces the error:

var g=RegExp(d+"=([^|]*)").exec(j); //output from closure-piler

I guess I have to escape properly the pipe like that (\\|) to fix the problem, but I don't know if I'm right because I don't know how to reproduce the error.

Any suggestions or solutions are wele.

Thanks.

[UPDATE]

The values of d are the keys of __utmz cookie values which I'm trying to retrieve and they are listed in an array like this ["utmccn", "utmcmd", /* ... */]. Well now there's not so much I can do, I'm at home with my friend the flu.

Share Improve this question edited Feb 8, 2011 at 11:16 Minkiele asked Feb 7, 2011 at 16:24 MinkieleMinkiele 1,2802 gold badges20 silver badges33 bronze badges 3
  • 3 the unexpected quantifier is probably ing from the value of variable d, as there is nothing wrong with the rest of that regex – CrayonViolent Commented Feb 7, 2011 at 16:26
  • I assume if you can't reproduce the error, the logic that generates d should be looked at more closely. Why don't you post that logic? – user557597 Commented Feb 7, 2011 at 20:24
  • similar problem and relative solution, hope can help stackoverflow./questions/8137741/… – GibboK Commented Nov 15, 2011 at 14:35
Add a ment  | 

2 Answers 2

Reset to default 6

A "quantifier" is a regular expression operator like * or +. The variable "d" in the above code probably contains something that's being interpreted as "code" to the regular expression parser, and it's invalid. You're right that it needs to be appropriately escaped. It's a problem very similar to the problem of escaping text that's being included in HTML markup, but distinct because the syntax in question is pletely different (that is, regular expression syntax vs. HTML syntax).

There are a lot of special characters in regular expression syntax, obviously, so it'll take a pretty gnarly regex to do that. Here's a possible way to do such a thing:

var quoted = unquoted.replace(/([*+.?|\\\[\]{}()])/g, '\\$1');

That might not get all of them; I'd look around for code that's more definitely tested than something a dope like me just made up :-)

Since that code you posted looks like it may e from some library, you may want to check the stack trace from the IE debugger to find out where the problem starts.

As a general rule you should always escape special characters inside character classes, you never know when you run into a regexp engine that will fail.

发布评论

评论列表(0)

  1. 暂无评论