目录
目录
String a = "zs";String b = "Zs";
① Object1.equals(Object2):区分大小写
② Object1.equalsIgnoreCase(Object2):不区分大小写
③ Object.toUpperCase():先把字符串转大写再比较
④ Object.toLowerCase():先把字符串转小写再比较
① object.index(参数); 找不到传回的值"-1"
② 截取:object.substring(beginIndex, endIndex) 左闭右开
一.字符串比较
String a = "zs";
String b = "Zs";
① Object1.equals(Object2):区分大小写
② Object1.equalsIgnoreCase(Object2):不区分大小写
③ Object.toUpperCase():先把字符串转大写再比较
④ Object.toLowerCase():先把字符串转小写再比较
二 获取字符串的下标:
① object.index(参数); 找不到传回的值"-1"
② 截取:object.substring(beginIndex, endIndex) 左闭右开
三 去除字符串前后空格:
object.trim();
四 string的增强型
①StringBuffer
②String的拼接方法
object.cocat();
object.append();
③:插入方法
object.insert(位置, "插入符号");
转载:https://blog.csdn.net/qq_45367492/article/details/101370099
查看评论