java中String常用方法

2021-09-13 12:44:23 字數 1280 閱讀 7708

public int length();獲取字串含有的字元個數,拿到字串長度。

public string concat(string str);將當前字串和引數字串拼接成為返回值新的字串。

public char charat(int index);獲取指定索引位置的單個字元。(索引從0開始)

public int indexof(string str);查詢引數字串在本字串當中首次出現的索引位置,如果沒有返回-1值。

二、字串的擷取方法:

public string substring(int index);擷取從引數位置一直到字串末尾,返回新字串。

public string substring(int begin,int end);擷取從begin開始,一直到end結束。中間的字串。

備註[begin,end), 包含左邊,不包含右邊。

public char tochararray();將當前字串拆分成為字元陣列作為返回值。

public byte getbytes();獲得當前字串底層的字元陣列。

public string replace(charsequence oldstring,charsequence newstring);將所有出現的老字串替換成新的字串,返回替換後的結果新字串。

備註:charsequence 意思就是說可以接受字串型別

四、分割字串的方法:

public string split(string regex);按照引數的規則,將字串切分為若干部分。

注意事項:split方法的引數其實是乙個「正規表示式」。

*/public class demostringget

system.out.println();

byte bytes = "jfklafwek".getbytes();

for (int a = 0; a < bytes.length; a++)

system.out.println();

string strb = "how do you do?";

string o = strb.replace("o", "*");

system.out.println(o);

system.out.println();

//字串分割

string str11 = "aaa,bbb,ccc,d";

string split = str11.split(",");

for (int i1 = 0; i1 < split.length; i1++) }}

java中String的常用方法

string的基本常用方法 這裡都是一些基本的用法,都是 舉例比較直接 字串的比較方法 返回值為boolean型別,引數為另乙個字串 if 豬八戒 equals 孫悟空 else 字串的查詢方法 返回值為int,也就是該字元在字串中的索引 引數為需要查詢的字元 string str1 android...

java中String物件的常用方法

public class test system.out.println string str1 new string c string str2 new string c,1,6 system.out.println str1 str2 system.out.println str1.charat...

Java 中 String 類的常用方法

string 類提供了許多用來處理字串的方法,例如,獲取字串長度 對字串進行擷取 將字串轉換為大寫或小寫 字串分割等,下面我們就來領略它的強大之處吧。string 類的常用方法 結合 來熟悉一下方法的使用 執行結果 1.字串 str 中字元的索引從0開始,範圍為 0 到 str.length 1 2...