string類:字串不可變的,字串常量池-堆
new string()
new string("")
new string(char[ ] )
new string(byte[ ], charset=)解碼再編碼
int indexof(char/string[, int]) **從指定下標位置開始,給定字元第一次出現的位置**
int lastindexof(char/string[, int]) **反過來的 多用於 檢視ip位址後邊幾個有用的數字的索引**
string substring(int[, int]) **將此字串在序列位置切割**
char tochararray() **將此字串轉換為乙個新的字元陣列
char charat(int)** **返回索引位置的字元**
string trim() //**去掉前後兩端空格**
boolean startswith(string) **是否以...開始** 可以在後邊加索引 表示當前索引位置是否以這個開始
boolean endswith(string) **是否以...結束**
string touppercase() **變大寫**
string tolowercase() **變小寫**
boolean equalsingnorecase() **// 忽略大小寫的判斷**
boolean isempty() **// 判斷字串長度是否為0**
string str = string.valueof(new integer(0));**// 將所有其他型別物件變成字串型別**
String常用方法總結
將此字串中的字元複製到目標字元陣列 param 字串中要複製的第乙個字元的索引 param 字串中要複製的最後乙個字元之後的索引 不包括該字元 param 目標陣列 param 目標陣列中的起始偏移量 說明 以下任一項為true將會丟擲indexoutofbound ception異常 1.srcb...
總結String常用方法
public class test system.out.println str.substring 0 2 system.out.println str.indexof a 方法十二 從左向右查,返回指定字元在字串中的第一次出現的位置從0開始,從左向右查,沒有則返回 1 system.out.pr...
總結String類常用方法
public class test 1.獲取字串長度 system.out.println str.length 輸出62.判斷字串是否一致 區分大小寫 system.out.println str.equals abcd 輸出false3.判斷字串是否一致 不區分大小寫 system.out.pr...