码迷,mamicode.com
首页 > 编程语言 > 详细

Java字符串前用零补齐

时间:2021-06-07 21:18:22      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   null   代码   format   return   ring   print   程序   ==   

源程序代码

/**
 * @author Yawei Xi
 */
public class Test {

    private static final String FORMAT_STRING = "00000000";

    /**
     * 字符串前用零补齐
     *
     * @param src 原始字符串
     * @return 补齐后的字符串
     */
    public static String formatWithMakingUp(String src) {
        if (null == src) {
            return null;
        }
        int delta = FORMAT_STRING.length() - src.length();
        if (delta <= 0) {
            return src;
        }
        return FORMAT_STRING.substring(0, delta) + src;
    }

    public static void main(String[] args) {
        String a = "1";
        String b = "12";
        String c = "123";
        String d = "1234";
        String e = "12345";
        String f = "123456";
        String g = "1234567";
        String h = "12345678";
        String i = "123456789";
        System.out.println(formatWithMakingUp(a));
        System.out.println(formatWithMakingUp(b));
        System.out.println(formatWithMakingUp(c));
        System.out.println(formatWithMakingUp(d));
        System.out.println(formatWithMakingUp(e));
        System.out.println(formatWithMakingUp(f));
        System.out.println(formatWithMakingUp(g));
        System.out.println(formatWithMakingUp(h));
        System.out.println(formatWithMakingUp(i));
    }
}

输出结果

00000001
00000012
00000123
00001234
00012345
00123456
01234567
12345678
123456789

Java字符串前用零补齐

标签:str   null   代码   format   return   ring   print   程序   ==   

原文地址:https://www.cnblogs.com/freelancy/p/14860014.html

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