Inside a *.js file I use the following pattern to find a string contains 4 digits:
在一个*。我使用下面的模式找到一个字符串包含4位数字:
value.match(/\d{4}/)
Chrome eats it correctly, but Intellij IDEA 12.1.4 shows a warning on the closing '}' (actually it underlines it without a comment).
Chrome正确地吃了它,但是Intellij IDEA 12.1.4在关闭的“}”上显示了一个警告(实际上它在没有注释的情况下强调了它)。
Is usage of {} in such regexps unwanted in some way or it's just a bug of IDEA?
在这样的regexp中使用{}在某种程度上是不需要的,还是仅仅是一个错误的想法?