lastIndexof ( ) 子串在主串最后一次出现的位置从后往前
例:String cou ="naChi Americana";
intindex3 = cou.lastIndexOf("na",5);子串最后一次出现的位置
System.out.println(index3);
intindex4 = cou.lastIndexOf("na");最后一次出现na的位置
System.out.println(index4);
String strLast="1234567893";
intlast = strLast.lastIndexOf("3");
System.out.println(last);
substring截取,从字符串中截取
例: String sub1 ="piano voilion".substring(1);
System.out.println(sub1);
截取结果为"iano voilion"
concat拼接,合并 变量1.concat(变量2)
例: String s1 = "ABC";
String s2 = "XYZ";
s1 = s1.concat(s2);
System.out.println(s1);
结果为:ABCXYZ
string.valueof把数字转为字符串
string 变量 = String。valueof
例: String useValue = String.valueOf(1.2);
System.out.println(useValue);
replace替换
例: String replace ="replace".replace('e','a');
System.out.println(replace);
结果为"raplaca"
toUpperCase()全转成大写
例: String upCase ="upcase".toUpperCase();
System.out.println(upCase);
结果为UPCASE
toLowerCase()全转成小写
例: String low ="LOWCASE".toLowerCase();
System.out.println(low);
结果为lowcase
trim去掉前后空格
例: String trim =" white Space ".trim();
System.out.println(trim);
结果为white Space (trim)只能去掉前后的空格
split分解 分解字符串用
improt java.util.Arrays;引用Arrays类方法