Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在 IE 8 中不起作用的简单正则表达式。
有什么想法可以解决这个问题吗? 我的reges使用:\"^.{4,}$"\
\"^.{4,}$"\
有谁知道如何在 IE8 中进行这项工作?
我猜你想写
var re = /^.{4,}$/;
看起来您正在尝试匹配由四个或更多字符组成的整个字符串。正则表达式将是:
^.{4,}$
您可以将其写为 JavaScript 正则表达式文字:
/^.{4,}$/
...或者您可以将其编写为字符串文字,并将其传递给 RegExp 构造函数:
new RegExp("^.{4,}$")
这有帮助吗?