어느 가을날의 전환점

JAVA|Function - LPad() : 문자열 좌측에 자릿수 채우기 본문

Development

JAVA|Function - LPad() : 문자열 좌측에 자릿수 채우기

어느가을빛 2009. 12. 29. 10:44

  /**
     * lpad 함수
     *
     * @param str   대상문자열, len 길이, addStr 대체문자
     * @return      문자열
     */

    public static String lpad(String str, int len, String addStr) {
        String result = str;
        int templen   = len - result.length();

        for (int i = 0; i < templen; i++){
              result = addStr + result;
        }
        
        return result;
    }

Comments