以下Regex在Chrome中正常运行,但在Internet Explorer中无效。
^(?=.*\d)(?!.*?\.[^.\n]*,)\d*(,\d*,?)*(\.\d*)?$
Regex用于具有多个(可选)逗号和单个(可选)小数点的浮点数。为了进一步明确,请参考RegExp for floating number in JavaScript with optional (multiple) commas and decimal points。
我已将此链接http://blog.stevenlevithan.com/archives/regex-lookahead-bug引用。 但解决方案不起作用。 请帮忙!