js number format All In One
js number format All In One
JavaScript 格式化数字、金额、千分位、保留几位小数、舍入舍去, 百分比 %
https://www.html.cn/archives/7324
demos
bug
not good
这个库,只是截取指定的长度,并不能保证精度;js 计算double 都存在精度损失;
solution
js number format 自己实现
// 非正则, js 实现
function formatCash(str) {
return str.split('').reverse().reduce((prev, next, index) => {
// reduce 不指定 init value, 默认取 arr[0] 做为 init value
// reduce index 从 1 开始,不是 0 ⚠️
console.log(`prev, next, index =`, prev, next, index);
return ((index % 3 !== 0) ? next : (next + ',')) + prev
})
}
formatCash('1234567890');
// 1,234,567,890
// 金融数字格式化
// 1234567890 --> 1,234,567,890
const log = console.log;
// 正则实现
const formatMoney = (str) => str.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
formatMoney('1234567890');
// 1,234,567,890
https://regexper.com/#%2F\B(%3F%3D(\d{3})%2B(%3F!\d))%2Fg
numeral.js
import numeral from 'numeral';
// numeral(val).format('0.00')
// content: `总转化率: ${numeral(totalRate).format('0.00%')}`,
http://openexchangerates.github.io/accounting.js/
(🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!
refs
千分位格式
js 金融数字格式化 All In One
https://www.cnblogs.com/xgqfrms/p/13638168.html
©xgqfrms 2012-2021
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/11759100.html
未经授权禁止转载,违者必究!