作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将格式化数字转换为 JS 默认数字格式。
这是我的代码:
String.prototype.toJsFloatFormat = function() {
debugger;
var newVal = this;
return newVal;
}
//Example of use
var input = 10000.22; //default js format
var formatted = input.toLocaleString("es"); // result is: 10.000,22
var unformatted = formatted.toJsFloatFormat(); //expected result = 10000.22;
最佳答案
这并不容易。大多数评论都说“不要尝试-
对数字本身进行计算,而不是格式化值”。
您需要弄清楚十进制和千位分隔符是什么。为此,您需要知道数字转换为哪个区域设置。
(1234.5).toLocaleString("es").match(/(\D+)/g);
// -> [".", ","]
function unformatString(string, locale) {
var parts = (1234.5).toLocaleString(locale).match(/(\D+)/g);
var unformatted = string;
unformatted = unformatted.split(parts[0]).join("");
unformatted = unformatted.split(parts[1]).join(".");
return parseFloat(unformatted);
}
关于javascript - 如何恢复到LocaleString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48950796/
我必须使用基于国家/地区的逗号和句点分隔符的国家/地区代码以货币格式显示数字。 例如如果数字是 4294967295000 那么 美国 = 4,294,967,295,000.00 美元 印度 = 4
这是我的第一个 Titianium 项目,我刚刚在使用 iOS 模拟器时遇到错误: Titianium Error: Could not find module localeStrings for a
我是一名优秀的程序员,十分优秀!