java怎么把一个字符串中的字符替换成别
先看下概念,最后面有说到修改
一.Java字符串类基本概念
在JAVA语言中,字符串数据实际上由String类所实现的。Java字符串类分为两类:一类是在程序中不会被改变长度的不变字符串;二类是在程序中会被改变长度的可变字符串。Java环境为了存储和维护这两类字符串提供了
String和StringBuffer两个类。
一、创建字符串
例: Stringstr=new("This is a String");
或者 Stringstr="This is a String";
二、得到字符串对象的有关信息
1.通过调用length()方法得到String的长度.
例:
String str="Thisis a String";
int len =str.length();
2.StringBuffer类的capacity()方法与String类的 length()的方法类似,但是她测试是分配给StringBuffer的内存空间的大小,而不是当前被使用了的内存空间。
3.如果想确定字符串中指定字符或子字符串在给定字符串的位置,可以用 indexOf()和lastIndexOf()方法。
String str="Thisis a String";
Int index1 =str.indexOf("i"); //index=2
Intindex2=str.indexOf(‘i‘,index+1); //index2=5
Intindex3=str.lastIndexOf("I"); //index3=15
Intindex4=str.indexOf("String"); //index4=10
三、修改可变字符串
StringBuffer类为可变字符串的修改提供了3种方法,在字符串中间插入和改变某个位置所在的字符。
1.在字符串后面追加:用append()方法将各种对象加入到字符串中。
2.在字符串中间插入:用insert()方法。例
StringBuffer str=new StringBuffer("Thisis a String");
Str.insert(9,"test");
System.out.println(str.toString());
这段代码输出为:Thisis a test String
3.改变某个位置所在的字符,用setCharAt()方法。
StringBuffer sb =new StringBuffer("aaaaaa");
sb.setCharAt(2, “b”); // 结果aabaaa
2017-03-25 · 知道合伙人互联网行家
public class TestString{
public static void main(String[] args) {
String a = "StringGo";
String[] b = {"a","b","o"};
//得到字符串中最后一个字符
//注意最好在接受的时候用char类型的包装类Character
Character lastChar = a.charAt(a.length() - 1);
for (int i = 0; i < b.length; i++) {
if (lastChar.toString().equals(b[i])) {
b[i] = "替换";
}
}
for (int i = 0; i < b.length; i++) {
System.out.println(b[i]);
}
}
}
2017-03-24 · 百度知道合伙人官方认证企业
public static void main(String[] args) {
String te = "***";
//te = te.replaceAll("\\*", "a");//将每个*转换成a
te = te.replaceAll("\\*\\*\\*", "abc");//将三个*一起转换成abc
System.out.println(te);
}