일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- error
- 톰캣
- 오라클
- 마이플랫폼
- 오류
- 기타소득
- 튜닝
- 한글
- 함수
- Book
- 도서
- MIP
- Report Designer
- Eclipse
- JEUS
- 자바
- DB
- miplatform
- 에러
- JavaScript
- 성능
- 이클립스
- oracle
- 태그를 입력해 주세요.
- 데이터베이스
- java
- Tomcat
- 회계
- 엑셀
- Excel
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