텍스트 치환 (replace)

프로그래밍/Android (Java)|2015. 1. 27. 11:00
반응형

String 이나 기타 값의 내용중 특정 문자를 바꾸기 위한 방법입니다.


TextView OLD = (TextView)findViewById(R.id.history);

OLD.setText(sb.toString());

OLD.replaceAll("sys", "docu");    // 안됨


* OLD 내용중 sys 라는 문자는 모두 docu 로 변환시키라는것인데 어디가 잘못인지 안됩니다.

   아래처럼 해결하였습니다.


TextView OLD = (TextView)findViewById(R.id.history);

OLD.setText(sb.toString().replaceAll("sys", "docu"));


반응형

댓글()