美文网首页
利用正则舍掉数字多余的0

利用正则舍掉数字多余的0

作者: 田真的架构人生 | 来源:发表于2017-08-25 14:27 被阅读0次

    利用String.format或者DecimalFormat、BigDecimal对小数格式化后,会遇到一个问题,如果结果恰好是整数,后面还会跟着多余的0,怎样将这些无用的0去掉?Java貌似没有提供这样的api,只能自己实现了。

    public String subZeroAndDot(String str) {
            if (str.indexOf(".") > 0) {
                str = str.replaceAll("0+$", "");//去掉多余的0  
                str = str.replaceAll("[.]$", "");//如最后一位是.则去掉  
            }
            return str;
        }
    

    相关文章

      网友评论

          本文标题:利用正则舍掉数字多余的0

          本文链接:https://www.haomeiwen.com/subject/txvudxtx.html