Java - replace a character at a specific index in a string?

String are immutable in Java. You can't change them.java

You need to create a new string with the character replaced.dom

String myName = "domanokz";
String newName = myName.substring(0,4)+'x'+myName.substring(5);

or you can use a StringBuilder:ui

StringBuilder myName = new StringBuilder("domanokz");
myName.setCharAt(4, 'x');

System.out.println(myName);

http://stackoverflow.com/questions/6952363/java-replace-a-character-at-a-specific-index-in-a-stringspa

相關文章
相關標籤/搜索