String 類的常用的一些方法

2021-08-06 01:27:09 字數 1445 閱讀 2600

string 類的總結。

string

類一旦被建立,就不能被改變。以下是string類的常用方法,必須熟記和掌握。

1, char charat(int index)根據索引角標來獲取對應的char型別字元。

2, int indexof(int ch):返回指定字元在字串中第一次出現的索引角標。如果沒有,返回-1int indexof

(string str):返回指定引數字串在字串中第一次出現的索引角標。如果沒有,返回-1。int indexof

(string str,fronindex):從指定索引位置查詢指定引數字串在字串第一次出現的索引角標。如果沒有,

返回-1。int lastindexof(string str):從最後位置開始進行索引。

3, boolean contains(string str):是否包含引數字串。內部使用的就是indexof()。

4, boolean startswith(string str):是否以str為結尾。boolean endswith(str):是否以str為開始。

5, string tolowercase():全變為小寫。string touppercase():全變為大寫。

6 int length():獲取字串的個數。

7, boolean equals(str):這個方法複寫了object 的equals()方法,旨在判斷兩個字串是否內容相同。

8, string trim():去掉字串兩邊的空格。

9, char [ ]tochararray():將字串變為字元陣列。10,byte [ ]getbytes():將字串變為位元組陣列。

byte getbytes(charset):按指定的編碼格式將字串變為位元組陣列。11,string [ split(reg

):將字串按照指定的正規表示式切割為字串陣列。

12,

static string copyvalueof(char ,offset,len):將乙個字元陣列變成字串。static string valueof(char ,offset,len):

將乙個字元陣列變成字串。

13,

static valueof(int i):返回int型的引數的字串表現形式。static valueof(boolean&long&float&double&char&object):

返回各種型別的字串形式。

14,

string replace(old cha,new cha):用新的字元換掉舊的的字元,返回新的字串。string replace(s1,s2):用自定義的字串

s2換掉s1。返回新的字串。

15,

string substring(int start,int end):獲取字串中從start(包含start)到end(不包含)的子字串。

String的一些常用方法

trim 方法是用來刪除字串兩端的空白字元並返回,trim方法並不影響原來的字串本身,它返回的是乙個新的字串。例如 var str hello world alert str.trim 上面的例子彈出為 hello world split 方法用於把乙個字串分割成字串陣列。stringobject....

String類中一些常用的函式

1 charat index 通過他的索引來獲取元素 test public void test1 string a dfjkdjfd134 for int i 0 i2 indexof string s 返回當前字串的索引,字串索引的位置從0開始 indexof string s,int star...

string類一些常用函式用法

insert string的成員函式insert有以下多種過載 string insert int p0,const char s 在p0位置插入字串s string insert int p0,const char s,int n 在p0位置插入字串s的前n個字元 string insert in...