博客
关于我
javascript千位分隔
阅读量:389 次
发布时间:2019-03-05

本文共 1337 字,大约阅读时间需要 4 分钟。

??????

??????????????????????????????????????????????????????????????????

let num = 123456;  num.toLocaleString(); // ??: '123,456'

????????Node.js???????????????????????????????

????Node.js???????????

require('intl').NumberFormat().format(123456); // ??: '123,456'

?????????

????????????????????????????????????????????????????????????????

function numberWithCommas(x) {      var parts = x.toString().split(".");      parts[0] = parts[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");      return parts.join(".");  }

????????????????????????????????

console.log(numberWithCommas(23456324)); // ??: '23,456,324'

??????????????????????????????????????

????

????????????????????????????????????????????????????????????

function commaNum(num) {      let parts = num.toString().split('.');      parts[0] = ((str) => {          let tmp = '';          let counter = 0;          for(let i = str.length - 1; i >= 0; i--) {              if (counter == 3) {                  tmp += ',';                  i++;                  counter = 0;                  continue;              }              tmp += str[i];              counter++;          }          tmp = tmp.split('').reverse().join('');          return tmp;      })(parts[0]);      return parts.join('.');  }

???

console.log(commaNum(23456324)); // ??: '23,456,324'

???????????????????????????????

转载地址:http://nauwz.baihongyu.com/

你可能感兴趣的文章
postgresql Streaming Replication监控与注意事项
查看>>
postgresql 不需要付费_使用数据传输在PostgreSQL执行 外部连接运算符
查看>>
postgresql 主从配置_生产环境postgresql主从环境配置
查看>>
postgresql 函数&存储过程 ; 递归查询
查看>>
PostgreSQL 分组聚合查询中 filter 子句替换 case when
查看>>
PostgreSQL 同步流复制锁瓶颈分析
查看>>
PostgreSQL 备份与还原命令 pg_dump
查看>>
Postgresql 外部表插件postgres_fdw的安装和使用
查看>>
PostgreSQL 如何从崩溃状态恢复(上)
查看>>
PostgreSQL 存储过程基本语法
查看>>
PostgreSQL 实现批量更新、删除、插入
查看>>
PostgreSQL 导入 .gz 备份文件
查看>>
PostgreSQL 批量插入&更新数据时报错(ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time)
查看>>
PostgreSQL 新增数据返回自增ID
查看>>
postgresql 更新多列数据
查看>>
PostgreSQL 服务启动后停止
查看>>
PostgreSQL 辟谣存在任意代码执行漏洞:消息不实
查看>>
PostgreSQL+PostGIS实现两坐标点之间最短路径查询算法函数(地图工具篇.12)
查看>>
Qt开发——简易调色板QPalette
查看>>
PostgreSQL-解决连接时遇到的乱码问题
查看>>