javaSE Day3 String類中常用方法

2021-08-07 21:54:19 字數 2663 閱讀 7970

1.public string(char value)//(構造)字元陣列》字串
public class teststring ;

string arr = new string(data);

system.out.println(arr);

}

2.public string(char value, int offset, int count)//(構造)指定範圍
3.public char charat(int index)//(普通)取得字串指定位置字元
public class teststring 

}

4.public char tochararray()//(普通) 字串》字元陣列
public class teststring 

system.out.println();

system.out.println(arr); //字串

}}

1.public string(byte bytes)//(構造)位元組陣列》字串
2.public string(byte bytes, int offset, intlength)//(構造)指定範圍
3.public byte getbytes()//(普通)字串》位元組陣列
public class teststring 

}

4.public byte getbytes(string charsetname)

//(普通) 編碼轉換

throws unsupportedencodingexception

1.public boolean equals(string anobject)//(普通)判斷兩個字串是否相等,區分大小寫
2.public boolean equalsignorecase(string anotherstring)//(普通)不區分大小寫
3.public int compareto(string anotherstring)//(普通)比較兩個字串大小(按照字元編碼)
public class teststring 

}

1.public boolean contains(string s)//(普通)判斷字串是否存在
public class teststring 

}

2.public int indexof(string str)//(普通)從頭查詢字串位置,找不到返回-1
3.public int indexof(string str, int fromindex)//(普通)指定位置
4.public int lastindexof(string str)//(普通)從後往前
5.public int lastindexof(string str, int fromindex)//
6.public boolean startswith(string prefix)//(普通)判斷是否以指定的字串開頭
7.public boolean starswith(string prefix, int toffset)//
8.public boolean endwith(string suffix)//
public class teststring 

}

1.public string replaceall(string regex, string replacement)//(普通)全替換
2.public string replacefrist(string regex, string repalcement)//
public class teststring 

}

1,public string split(string regex)//(普通)全拆分
2.public string split(string regex, int limit)//
public class teststring }}

public string substring(int beginindex)//由開始擷取
public string substring(int beginindex, int endindex)//
public class teststring 

}

1.public boolean isempty()//是否為空(""),不是null
2.public int length()//取得字串長度
3.public string tolowercase()//轉小寫
4.public string touppercase()//轉大寫
5.public string trim()//去掉左右空格

c 中常用的String類

一.字串常用方法 1.indexof 如果找到字串出現的位置則為索引位置,否則返回 1,索引從0開始 2.string substring int startindex int length 從開始位置startindex,擷取到結束位置 擷取長度length 3.trim 清除前後兩端空格 4.t...

String類中常用的方法

這裡我們就把 info 這個字串 通過 這個分隔符 分割成幾部分 並吧沒部分新增到 s 陣列裡面 注意 只有字串才能分割 分隔符必須是 char 型別 而且是 字串 裡面存在的,例如我給在例1中split 括號中不傳入 而傳入 系統將無法分割,報錯內容自己看吧,我就不在舉例了 現在已經1點多了,院子...

String 類的實現(3)String類常用函式

1 2 include3 include4 include5 include 6 using namespace std 自己模擬實現的部分相關c string庫函式 8int my strlen const char p 9 17return count 18 19char my strcopy ...