String常用的方法

2021-08-04 06:41:06 字數 2851 閱讀 8126

no.

方法名稱

型別    描述1

public string(char value)構造

將全部字元陣列變為字串

2public string(char value, int offset, int count)構造

將部分字元陣列變為字串

3public char charat(int index)普通

返回指定索引位置上的字串,索引從0開始

4public char tochararray()普通

將字串變為字元陣列

5public string(byte bytes)構造

將全部的位元組陣列變為字串

6public string(byte bytes, int offset, int length)構造

將部分位元組陣列變為字串

7public byte getbytes()普通

將字串變為位元組陣列,需要傳輸的時候才會使用

8public byte getbytes(string charsetname)

throws unsupportedencodingexception普通

字串編碼轉換

9public boolean equals(string str)普通

區分大小寫的相等比較

10public boolean equalsignorecase(string anotherstring)普通

不區分大小寫的相等的比較

11public int compareto(string anotherstring)普通

比較字串的大小

12public boolean contains(string s)普通

判斷該字串是否在總字串中存在

jdk1.5之後

13public int indexof(string str)普通

從頭查詢字串的位置,不存在返回-1

14public int indexof(string str, int fromindex)普通

從指定位置查詢字串的位置,不存在返回-1

15public int lastindexof(string str)普通

從尾向前查詢字串的位置,不存在返回-1

16public int lastindexof(string str, int fromindex)普通

從指定位置由後向前查詢,不存在返回-1

17public boolean startswith(string prefix)普通

判斷是否以指定字串開頭

18public boolean startswith(string prefix, int toffset)普通

從指定索引開始,是否以指定字串開頭

19public boolean endswith(string suffix)普通

是否以指定字串結尾

20public string substring(int beginindex)普通

從指定位置擷取到結尾

21public string substring(int beginindex, int endindex)普通

擷取指定位置的字串

22public string replaceall(string regex, string

replacement)普通

替換全部

23public string replacefirst(string regex, string

replacement)普通

替換首個

24public string split(string regex)普通

全部拆分

25public string split(string regex, int limit)普通

拆分為有限個

26public string concat(string str)普通

字串連線,一般使用「+」

27public string intern()普通

將內容儲存到物件池中

28public boolean isempty()普通

判斷是否為空字串,但不是null

29public int length()普通

取得長度

30public string tolowercase()普通

全部轉小寫

31public string touppercase()普通

全部轉大寫

32public string trim()普通

去掉左右空格,但是中間保留

String的常用方法

1 字元陣列與字串 乙個字串可以變為乙個字元陣列,同樣,也可以把乙個字元陣列,變為乙個字串。在string類中提供了以下的操作方法 將字串變為字元陣列 1.tochararray 返回 char 例 string str 你好 char c str.tochararray 字元陣列變為字串 1.ch...

String的常用方法

string的常用方法 public int length 獲取字串當中含有的字元個數,拿到字串長度。public stirng concat string str 將當前字串和引數字串拼接成為返回值新的字串。public char charat int index 獲取指定索引位置的單個字元。索引...

String的常用方法

public string 空構造 public string byte bytes 把位元組陣列轉成字串 public string byte bytes,int index,int length 把位元組陣列的一部分轉成字串 public string char value 把字元陣列轉成字串 ...