JAVA#String類方法'札記——1
阿新 • • 發佈:2019-01-11
String s1="kobebryantIloveuforeverkobe"; String s2="kobe"; System.out.println(s2.length()); System.out.println(s1.charAt(5)); System.out.println(s1.equals(s2)); System.out.println(s1.compareTo(s2)); System.out.println(s1.indexOf(s2));//返回s2在s1中第一次出現的位置,若無,返回-1 System.out.println(s1.lastIndexOf(s2));//返回最後一次出現大的位置 System.out.println(s1.indexOf(s2,5));//從第五位開始,第一次出現的位置 System.out.println(s1.startsWith(s2)); System.out.println(s1.endsWith(s2)); System.out.println(s1.regionMatches(0,s2,0,s2.length()));//s1從第0位開始與s2從第0位開始在s2.length長度下是否相等 }
4
r
false
23
0
23
23
true
true
true