| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/ThisIs-Developer/Java/main/String%20Manipulation/SetCharAt.java | [Back] [Original] |
public class SetCharAt {
public static void main(String args[]) {
StringBuffer str = new StringBuffer("JAVA");
str.setCharAt(3, 'L');
System.out.println(str);
}
}
| Web Proxy Viewer | New URL | Original Page |