일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JavaScript
- 한글
- 성능
- 자바
- Book
- 오라클
- 기타소득
- 오류
- Report Designer
- 회계
- 이클립스
- JEUS
- java
- 톰캣
- 도서
- MIP
- oracle
- miplatform
- 엑셀
- error
- Excel
- DB
- Eclipse
- 태그를 입력해 주세요.
- 튜닝
- 함수
- 에러
- Tomcat
- 데이터베이스
- 마이플랫폼
Archives
- Today
- Total
목록java (21)
어느 가을날의 전환점
JAVA|Function - LPad() : 문자열 좌측에 자릿수 채우기
/** * 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; }
Development
2009. 12. 29. 10:44