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