码迷,mamicode.com
首页 > 其他好文 > 详细

字符串补0操作

时间:2019-05-24 17:13:44      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:整数   mat   code   @param   abc   描述   ati   atl   stat   

代码如下:

public static void main(String[] args) {
    System.out.println(addZeroForLeft(1001, 6));
    System.out.println(addZeroForLeft("abcd", 6));
}

/**
 * @描述: 整数前面补0
 * @param number 原始整数
 * @param formatLength 指定要格式化的长度
 * @return 补0后的字符串
 */
private static String addZeroForLeft(int number, int formatLength) {
    // 补0操作
    return String.format("%0" + formatLength + "d", number);
}

/**
 * @描述: 字符串前面补0
 * @param str 原始字符串
 * @param formatLength 指定要格式化的长度
 * @return 补0后的字符串
 */
private static String addZeroForLeft(String str, int formatLength) {
    int strLength = str.length();
    if (formatLength > strLength) {
        // 计算实际需要补0长度
        formatLength -= strLength;
        // 补0操作
        str = String.format("%0" + formatLength + "d", 0)   + str;
    }
    return str;
}

效果如下:

001001
00abcd

字符串补0操作

标签:整数   mat   code   @param   abc   描述   ati   atl   stat   

原文地址:https://blog.51cto.com/1197822/2399680

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!