Java实现数字千位分隔符
DecimalFormat
1 | new DecimalFormat(",###").format(new BigDecimal(1234567890).longValue()) |
String.format
1 | String.format("%,d",new BigDecimal(1234567890).longValue()) |
正则表达式
1 | String.valueOf(new BigDecimal(1234567890).longValue()).replaceAll("(\\d)(?=(\\d{3})+\$)", "\$1,") |
1 | #!/usr/bin/perl |
1 | OUTPUT: |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 马龙磊!
评论