Java正则表达式去前导0 Java 怎样使用正则表达式去除前导0
吹牛大王历险记 人气:0想了解Java 怎样使用正则表达式去除前导0的相关内容吗,吹牛大王历险记在本文为您仔细讲解Java正则表达式去前导0的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Java,正则表达式,去除前导0,下面大家一起来学习吧。
我就废话不多说了,大家还是看代码吧
String s="0000000002121210" s=s.replaceAll("^(0+)", ""); System.out.println(s);
补充:Java中数字处理去掉末尾的0
实例如下所示:
public static String insertComma(String s, int len) { if (s == null || s.length() < 1) { return ""; } NumberFormat formater = null; double num = Double.parseDouble(s); if (len == 0) { formater = new DecimalFormat("###,###"); } else { StringBuffer buff = new StringBuffer(); buff.append("###,###."); for (int i = 0; i < len; i++) { buff.append("#"); } formater = new DecimalFormat(buff.toString()); } return formater.format(num); }
double num = 5.5500; DecimalFormat decimalFormat = new DecimalFormat("##########.##########"); String numConverted = decimalFormat.format(num); //5.55
利用“########.##########”
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
加载全部内容