Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Quartz
- VirtualBox
- ssh
- IntelliJ
- context
- Mac
- plugin
- resource
- grep
- Windows
- 줄바꿈 문자
- maVen
- import
- bash
- web.xml
- 단축키
- Source
- port
- JavaScript
- Eclipse
- vscode
- find
- tomcat
- Windows 10
- GIT
- 네트워크
- netsh
- profile
- xargs
- lsof
Archives
- Today
- Total
develog
StringBuilder, replace 본문
private void replace(StringBuilder sb, String strFrom, String strTo) {
if (sb == null) return;
if (strFrom == null) return;
if (strTo == null) return;
while (sb.indexOf(strFrom) > -1) {
int idxStart = sb.indexOf(strFrom);
sb.replace(idxStart, idxStart + strFrom.length(), strTo);
}
}
'Dev > Java' 카테고리의 다른 글
template, callback (0) | 2013.07.17 |
---|---|
AsyncHttpClient (0) | 2013.07.11 |
spring-test-dbunit (0) | 2013.07.09 |
dbunit jar download (0) | 2013.07.09 |
Async (0) | 2013.07.09 |
Comments