String類的獲取功能

2021-09-13 12:38:03 字數 501 閱讀 7218

* a:string類的獲取功能

* int length():獲取字串的長度。

* char charat(int index):獲取指定索引位置的字元

* int indexof(int ch):返回指定字元在此字串中第一次出現處的索引。

* int indexof(string str):返回指定字串在此字串中第一次出現處的索引。

* int indexof(int ch,int fromindex):返回指定字元在此字串中從指定位置後第一次出現處的索引。

* int indexof(string str,int fromindex):返回指定字串在此字串中從指定位置後第一次出現處的索引。

* lastindexof

* string substring(int start):從指定位置開始擷取字串,預設到末尾。

* string substring(int start,int end):從指定位置開始到指定位置結束擷取字串。

String類的獲取功能

string類的獲取功能 int length 獲取字串的長度 char charat int index 返回指定索引處的字元 重點 int indexof int ch 返回回指定字元在此字串中第一次出現處的索引 重點 這裡的引數是int型別,而不是char型別 a 和97 都代表 a int ...

String類的獲取功能

int length 獲取字串的長度。char charat int index 獲取指定索引位置的字元 int indexof int ch 返回指定字元在此字串中第一次出現處的索引。int indexof string str 返回指定字串在此字串中第一次出現處的索引。int indexof i...

String類的獲取功能(部分)

package mystring string類的獲取功能 int length 獲取字串的長度,其實也就是字元個數 char charat int index 獲取指定索引的字元 int indexof string str 獲取str在字串物件中第一次出現的索引 如果在字串物件中查詢不到該str...