摘要: /** * 去掉小数点后面的零 * @param str * @return */ public static String trimZero(String str) { if(str==null){ return ""; } if (str.indexOf(".") > 0) { // 去掉多余的 阅读全文
posted @ 2022-06-08 16:14 全琪俊 阅读(18) 评论(0) 推荐(0) 编辑