1. 程式人生 > 其它 >String類的常用方法(replace、split、substring、toCharArray、toLowerCase、toUpperCase)

String類的常用方法(replace、split、substring、toCharArray、toLowerCase、toUpperCase)

技術標籤:大白Java成長日記(Java進階)java

文章目錄

String類的常用方法

1、replace

替換字串

語法格式:String replace(CharSequence target, CharSequence replacement)

String newString = "http://www.baidu.com".replace("http://","https://"
) System.out.println(newString);//輸出結果:https://www.baidu.com

2、split

用法:拆分字串

語法格式: String[] split(String regex)

String[] ymd = "1998-11-10".split("-");
for(int i = 0 ; i < ymd.length ; i++){
	System.out.println(ymd[i]);
}

執行結果:
在這裡插入圖片描述

3、substring

用法 :擷取字串

語法格式: String substring(int begininIndex)

System.out.println("http://www.baidu.com".substring(7));//輸出結果:www.baidu.com

語法格式: String substring(int begininIndex,int endIndex)

System.out.println("http://www.baidu.com".substring(7,10));//輸出結果:www

重點: 左閉右開,不包括結束下標的字元

4、toCharArray

用法:將字串轉換為char陣列

語法格式:char[] toCharArray()

char[] chars =
"我是中國人".toCharArray(); for(int i = 0 ; i < chars.length ; i++){ System.out.println(chars[i]); }

在這裡插入圖片描述

5、toLowerCase

用法:轉換為小寫

語法格式: String toLowerCase()

        System.out.println("ABCdefgh".toLowerCase());

在這裡插入圖片描述

6、toUpperCase

用法:轉換為大寫

語法格式: String toLowerCase()

        System.out.println("ABCdefgh".toLowerCase());

在這裡插入圖片描述