以下對c#中string類的方法進行彙總:
1.string (char) 使用指定的字串陣列構建乙個新的string物件
2.int compare(string a,string b,bool case) 比較字串a,b,case為true時表示不區分大小寫。當a>b返回正數,當a3. bool endswith(string) 確定當前字串是否以指定的字串結尾
4. bool startswith(string) 確定當前字串是否以指定的字串開頭
5.int indexof() 返回指定的字元或字串在當前字串中的位置
6.int lastindexof() 返回指定字元或字串的最後乙個匹配項位置
7.string insert(int,string) 在當前的字串中插入乙個指定的字串
8.string replace(string,string) 字串替換
9.string remove(int,int) 從指定位置開始刪除指定個數的字元
10. toupper() tolower() 字串大小寫轉換
11.string substring(int,int) 返回從指定位置開始指定個數的字串
下面舉個例子對個別方法進行說明:
string str1=「hello";
string srr2="world";
string upper,str3;
upper=str1.upper(); ///將str1轉換為大寫
str3=str1.insert(str1.length,str2); /// str3的內容為helloworld
C 中string類的使用方法
如果所比較的兩個string 相等,則返回0 操作string 大於引數string,返回 正數 操作string 小於引數string,返回負數。1 比較操作string 與 str 或c string ptr int compare const basic string str const in...
String類中的常用方法
string 類常用方法 構造方法 n public string char value 把字元陣列的資料封裝成字串物件 n public string char value,intoffset,int count 把字元陣列中的一部分資料封裝成字串物件 n比較方法 n boolean equals...
String類中split方法
string類中split方法 split 你需要分割字串的,分割的總個數 該方法使用正規表示式的底層完成對字串的分割 使用的案例 1 string s women,sksk,k,k,k,k,3 23 4for string s1 s.split 7 該執行結果是 women skskkk kk注意...