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 |
Tags
- lsof
- Eclipse
- grep
- find
- Source
- port
- ssh
- vscode
- bash
- netsh
- Mac
- Quartz
- IntelliJ
- tomcat
- import
- 줄바꿈 문자
- VirtualBox
- xargs
- web.xml
- 네트워크
- JavaScript
- context
- resource
- maVen
- Windows 10
- GIT
- 단축키
- Windows
- profile
- plugin
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