String類的獲取功能

2021-09-01 06:22:53 字數 1092 閱讀 2109

/**

* * 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):從指定位置開始到指定位置結束擷取字串。

*/public static void main(string args)

private static void demo4()

private static void demo3()

private static void demo2()

private static void demo1() ;

//陣列中的length是屬性

string s1 = "heima";

system.out.println(s1.length()); //length()是乙個方法,獲取的是每乙個字元的個數

string s2 = "你要**,造嗎?";

system.out.println(s2.length());

char c = s2.charat(5); //根據索引獲取對應位置的字元

system.out.println(c);

char c2 = s2.charat(10); //stringindexoutofbound***ception字串索引越界異常

system.out.println(c2);

}

String類的獲取功能

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

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...