일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Report Designer
- 튜닝
- DB
- JEUS
- 태그를 입력해 주세요.
- 에러
- JavaScript
- 회계
- oracle
- MIP
- 이클립스
- 마이플랫폼
- 엑셀
- 도서
- 함수
- Book
- 성능
- 톰캣
- 기타소득
- 오류
- Tomcat
- Excel
- 한글
- error
- java
- miplatform
- Eclipse
- 오라클
- 데이터베이스
- 자바
Archives
- Today
- Total
어느 가을날의 전환점
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' 카테고리의 다른 글
JAVA|Error - Incompatible operand types Integer and int (0) | 2010.02.03 |
---|---|
DEBUG|Debugging Tools for Windows - Overview (0) | 2010.01.22 |
JavaScript|브라우저(Browser) 닫기(Close) 스크립트 (0) | 2010.01.15 |
JAVA|Function - AddComma() : 숫자 자릿수 콤마 추가 (0) | 2009.12.29 |
JavaScript|Google Closure Tools (0) | 2009.11.18 |
Comments