码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-10-29 12:54:16      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   java   sp   div   

String are immutable in Java. You can‘t change them.

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);

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

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

标签:style   blog   http   io   color   ar   java   sp   div   

原文地址:http://www.cnblogs.com/savagemorgan/p/4059044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!