VUE + OPENLAYERS實現實時定位功能
阿新 • • 發佈:2021-09-03
String類是我們最常使用的類。字串類的方法我們必須非常熟悉!我們列出常用的方法,請大家熟悉。
表5-2 String類的常用方法列表
【示例】String類常用方法一
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
public class StringTest1{
public static void main(String[]args){
Strings1= "coreJava" ;
Strings2= "CoreJava" ;
System.out.println(s1.charAt( 3 )); //提取下標為3的字元
System.out.println(s2.length()); //字串的長度
System.out.println(s1.equals(s2)); //比較兩個字串是否相等
System.out.println(s1.equalsIgnoreCase(s2)); //比較兩個字串(忽略大小寫)
System.out.println(s1.indexOf( "Java" )); //字串s1中是否包含Java
System.out.println(s1.indexOf( "apple" )); //字串s1中是否包含apple
Strings=s1.replace( '' , '&' ); //將s1中的空格替換成&
System.out.println( "resultis:" +s);
} }
|
【示例】String類常用方法二
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
public class StringTest2{
public static void main(String[]args){
Strings= "" ;
Strings1= "Howareyou?" ;
System.out.println(s1.startsWith( "How" )); //是否以How開頭
System.out.println(s1.endsWith( "you" )); //是否以you結尾
s=s1.substring( 4 ); //提取子字串:從下標為4的開始到字串結尾為止
System.out.println(s);
s=s1.substring( 4 , 7 ); //提取子字串:下標[4,7)不包括7
System.out.println(s);
s=s1.toLowerCase(); //轉小寫
System.out.println(s);
s=s1.toUpperCase(); //轉大寫
System.out.println(s);
Strings2= "Howoldareyou!!" ;
s=s2.trim(); //去除字串首尾的空格。注意:中間的空格不能去除
System.out.println(s);
System.out.println(s2); //因為String是不可變字串,所以s2不變
}
}
|