StringBuffer类常用的几个方法

StringBuffer str=new StringBuffer(“opfjirfhir90”);
str.charAt(i);//取字符串i位置的元素
str.delete(str.charAt(i));//删除字符串i位置的字符
str.append(“890”);//向str尾添加元素
str.setCharAt(3,p);//用p替换str中索引为3的字符
str.insert(2,o);//将o插入到字符串str的第2位置
str.delete(0,7);//删除str中从第0到第6的字符串,不包含第7个,就是1-6;
str.deleteCharAt(5);//删除str中第5个位置上的字符
str.replace(2,5,opop)//str中第2到第4个位置上的字符串用opop替换掉

你可能感兴趣的:(JAVA小知识)