patternjavaCritical
Replace a character at a specific index in a string?
Viewed 0 times
replaceindexcharacterspecificstring
Problem
I'm trying to replace a character at a specific index in a string.
What I'm doing is:
This gives an error. Is there any method to do this?
What I'm doing is:
String myName = "domanokz";
myName.charAt(4) = 'x';This gives an error. Is there any method to do this?
Solution
String are immutable in Java. You can't change them.
You need to create a new string with the character replaced.
Or you can use a StringBuilder:
You need to create a new string with the character replaced.
String myName = "domanokz";
String newName = myName.substring(0,4)+'x'+myName.substring(5);Or you can use a StringBuilder:
StringBuilder myName = new StringBuilder("domanokz");
myName.setCharAt(4, 'x');
System.out.println(myName);Code Snippets
String myName = "domanokz";
String newName = myName.substring(0,4)+'x'+myName.substring(5);StringBuilder myName = new StringBuilder("domanokz");
myName.setCharAt(4, 'x');
System.out.println(myName);Context
Stack Overflow Q#6952363, score: 711
Revisions (0)
No revisions yet.