有没有办法在JavaScript中通过Intl.NumberFormat反转格式化的内容?

4 浏览
0 Comments

有没有办法在JavaScript中通过Intl.NumberFormat反转格式化的内容?

Intl.NumberFormat (参见Mozilla文档)提供了一种在Javascript中将数字格式化为当前区域设置版本的好方法,例如:

new Intl.NumberFormat().format(3400); // 对于德语区域设置返回"3.400"

但我找不到反向格式化的方法。

是否有类似以下的方法:

new Intl.NumberFormat().unformat("3.400"); // 对于德语区域设置返回3400

非常感谢任何帮助。

0