public class MainClass{ public static void main(String[] argv){ StringBuffer sb = new StringBuffer(); sb.append("this is a test"); sb.setCharAt(2,'N'); System.out.println(sb); } }
thNs is a test