나만의 개발 기록
charAt 문자열 한글자씩 출력 String s = "무야호"; for(int i=0; i
StringBuilder newIdName = new StringBuilder("TISTORY"); newIdName.setCharAt(3, '*'); newIdName.setCharAt(4, '*'); newIdName.setCharAt(5, '*'); System.out.println(newIdName ); 결과값 : TIS***Y