Java 字串常用方法

2021-08-21 19:48:34 字數 999 閱讀 9546

判斷類功能:

public

class main

}

獲取類功能:

public

class main

}

轉化類功能:

public

class main

system.out.println();

//將字串轉化為字元陣列

char a = s.tochararray();

system.out.println(a);

a[1] = 'm';

system.out.println("改變後:");

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

system.out.println();

//將字元陣列轉化為字串

string s2 = string.valueof(a);

system.out.println("轉化為字串:"+s2);

//將乙個int型別的資料轉化為字串型別

//這個方法可以將任意型別的資料轉化為字串型別

system.out.println(string.valueof(321));

//將字串轉化為小寫

system.out.println(s.tolowercase());

//將字串轉化為大寫

system.out.println(s.touppercase());

//將字串拼接到後邊

system.out.println(s.concat("789"));

}}

其他功能:

public

class main

}

Java 字串常用提取方法

返回出現第乙個匹配的位置,如果沒有找到字元或字串,則返回 1 publicintindexof intch publicintindexof string value 搜尋第乙個出現的字元ch 或字串value publicintlastindexof intch publicintlastinde...

java基礎 java字串建立及常用方法

1.建立並初始化字串 1 使用字串常量直接初始化 string s hello 2 使用構造方法建立並初始化 string 初始化乙個物件,表示空字串行 string value 利用已存在的字串常量建立乙個新的物件 string char value 利用乙個字元陣列建立乙個字串 string c...

字串常用方法

字串常用方法 public class 3 abc 5 int indexof string str 輸出字串2在字串1中的下標 system.out.println hello crl endswith crl 6 6int indexof string str,int fromindex 在字串...