본문 바로가기
Java

StringBuilder replaceAll

by 자바초보자 2016. 1. 8.
728x90

StringBuilder replaceAll은 지원하지 않아 별도로 제작해야함.

 

 public static void replaceAll(StringBuilder builder, String from, String to)
 {
     int index = builder.indexOf(from);
     while (index != -1)
     {
         builder.replace(index, index + from.length(), to);
         index += to.length(); // Move to the end of the replacement
         index = builder.indexOf(from, index);
     }
 }

728x90

'Java' 카테고리의 다른 글

정규식 while 검사  (0) 2016.01.27
c:import include request uri 정보얻기  (0) 2016.01.20
MS office 하이퍼링크 세션 버그 문제  (0) 2015.12.30
Gson DateFormat  (0) 2015.12.22
map to list  (0) 2015.11.18