String常用方法:
package com.cheng.string;
public class Methord01 {
public static void main(String[] args) {
String str = "HelloWorld";
System.out.println(str.length());//返回字符串长度
System.out.println(str.charAt(2));//charAt返回指定索引处的字符,此处为1,输出e
System.out.println(str.isEmpty());//inEmpty判断是否是空字符串,布尔类型。
String s1 = str.toLowerCase();//toLowerCase将str所有字符全部转换为小写,用s1接收
String s2 = str.toUpperCase();//toUpperCase将str所有字符全部转换为大写,用s2接收
System.out.println(str);//HelloWorld
System.out.println(s1);//helloworld
System.out.println(s2);//HELLOWORLD
String str2 = " hel lwo dsa ";
String s3 = str2.trim();//trim返回字符串的副本,忽略前导空白和尾部空白。
System.out.println(str.equals(str2));//equals判断两字符串内容是否一样,boolean类型 输出false
System.out.println(str.equalsIgnoreCase(str2));//equalsIgnoreCase 在忽略大小写时判断两字符串内容是否一样,输出false
String s4 = str.concat("AAA");//concat 将指定字符串连接到此字符串的结尾,等价于+
System.out.println(str.compareTo(str2));//compareTo : str和str2比较大小。 输出40
String s5 = str.substring(2);//substring : 取从索引处开始(包括索引)直到结束的字串。
String s6 = str.substring(2,5);//substring : 取从索引处开始(包括),到索引结束(不包括索引)的字串。
System.out.println(s5);//lloWorld
System.out.println(s6);//llo
}
}