StringBuffer s = new StringBuffer("hello");//增
s.append('.');
s.append(“张三丰");
s.append("赵敏").append(100).append(true).append(10.5);System.out.println(s);
l/hello,张三丰赵敏100true10.5//删
删除索引为>=start && <end处的字符*/
s.delete(11,14);
System.out.println(s);//改
s.replace(9,11,"周芷若");System.out.println(s);
/查找指定的子串在字符串第一次出现的索引,如果找不到返回-1int indexOf = s.indexOf("张三丰");
System.out.println(indexOf);
/hello.张三丰周芷若true10.5
s.insert(9,"赵敏");
System.out.println(s);/长度
System.out.println(s.length0);System.out.println(s);
网友评论