String常用方法

2021-10-01 08:12:13 字數 1057 閱讀 6026

public boolean equals (object anobject) :將此字串與指定物件進行比較。

public boolean equalsignorecase (string anotherstring) :將此字串與指定物件進行比較,忽略大小寫。

public int length () :返回此字串的長度。

public string concat (string str) :將指定的字串連線到該字串的末尾。

public char charat (int index) :返回指定索引處的 char值。

public int indexof (string str) :返回指定子字串第一次出現在該字串內的索引。

public int lastindexof(int ch) :返回指定字元在此字串中最後一次出現處的索引。

public string substring (int beginindex) :返回乙個子字串,從beginindex開始擷取字串到字串結尾。

public string substring (int beginindex, int endindex) :返回乙個子字串,從beginindex到endindex擷取字串。含beginindex,不含endindex。

擷取路徑字串獲得檔名

string substring = filename.substring(filename.lastindexof("\") + 1);

public char tochararray () :將此字串轉換為新的字元陣列。

public byte getbytes () :使用平台的預設字符集將該 string編碼轉換為新的位元組陣列。

public string replace (charsequence target, charsequence replacement) :將與target匹配的字串使用replacement字串替換。

public string split(string regex) :將此字串按照給定的regex(規則)拆分為字串陣列。

String常用方法

1,startswith判斷是否以某字串開始 2,endswith判斷是否以某字串結尾 3,contains判斷是否包含另乙個字串 4,substring取出指定位置的字串 5,charat找到指定位置的字元 6,indexof正向找到指定字元的位置 7,lastindexof反向找到指定字元的位置...

string 常用方法

例項化方法建立字串 instancetype initwithstring nsstring astring instancetype initwithformat nsstring format,instancetype initwithutf8string const char bytes 類方...

String常用方法

public class teststring string str hello string的方法 1 跟字元陣列有關的方法 物件的長度 char array str.tochararray 把string物件轉換成char陣列 根據下標得到string物件該下標位置的字元 l 得到某個字元在st...