String類的獲取功能

2021-08-04 04:28:10 字數 624 閱讀 1834

string類的獲取功能:

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

char charat(int index):返回指定索引處的字元!(重點)

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

這裡的引數是int型別,而不是char型別

『a』和97 都代表』a』

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

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

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

(重點)

string substring(int start):擷取:從指定位置開始擷取,預設擷取到末尾:包含start這個索引

string substring(int start,int end):從指定位置開始擷取到指定位置結束:包左(start這個索引),不包含end這個位置

public class stringdemo 

}

String類的獲取功能

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

String類的獲取功能

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

String類的獲取功能(部分)

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