總結String類常用方法

2021-10-03 18:57:33 字數 449 閱讀 6055

public class test 	}	

}

string str = "abuiugba";

system.out.println(str.indexof("a"));

system.out.println(str.lastindexof("a"));//從右向左數a的位置(a還是正常順序的第乙個a)

system.out.println(str.indexof("ab"));//可將ab看作乙個整體。

system.out.println(str.substring(2));//將字串位置為2及以後的字元輸出,這個是uiugba。

system.out.println(str.substring(2, 5));//輸出位置為2到5之間的字元,2位置的輸出,而5位置的不輸出。此輸出為uiu.

總結String類常用方法

public class test 1.獲取字串長度 system.out.println str.length 輸出62.判斷字串是否一致 區分大小寫 system.out.println str.equals abcd 輸出false3.判斷字串是否一致 不區分大小寫 system.out.pr...

String類的常用方法總結

字串變為字元陣列 public char tochararray 字元陣列變為字串 使用string的構造方法實現 public string char value public string char value,int offset,int count public char charat in...

String類中的常用方法總結

package com.qfedu.b string 字串比較問題 public class demo1 注意 無論什麼時候兩個字串比較內容是否相等,我們一定要有equals方法,因為如果用的是來比較,會比較兩個字串的位址。一般只有boolean型別的資料用來進行比較 獲取字串長度方法 int le...