1.字串比較
字串.comparto(目標字串)
"a".comparto("b");
2.查詢子串
字串.indexof(子串,查詢其實位置) ;
字串.lastindexof(子串) ;最後一次出現的位置
str.indexof("ab",0);
3.插入子串
字串.insert(插入位置,插入子串) ;
s.insert(2,"ab");
4.移出子串
字串.remove(其實位置,移出數);
s.remove(3,2);
5.替換子串
字串.replace(源子串,替換為);
s.replace("-"," ");將-替換為空格
6.擷取子串
字串.substring(擷取其實位置,擷取個數);
"abcdef".substring(2,3);結果為cde
7.去空格
mystring = mystring.trim(); //同時刪除字串前後的空格
char trimchars = ; //準備刪除的字元
mystring = mystring.trim(trimchars); //刪除所有指定字元
mystring = mystring.trimend(); //刪除字串後的空格
mystring = mystring.trimstart(); //刪除字串前的空格
8.轉換大小寫
str.tolower()轉化成小寫字母
str.toupper()轉化成大寫字母
char.isupper(str,3)//判斷乙個字串中的第n個字元是否是大寫
9.拆分字串
string strs = mystring.split(' ',3); //按照空格進行拆分,並且返回前三個字串,結果在字串陣列裡
10.使字串達到指定長度
padleft()、padright() ,如:
string str1="00";
str1=str1.padleft(3,'1'); //無第二引數為加空格,結果為「100」
11.得到字串長度
len=str.length;
12.字串遍歷
string mystring = "this is a test!";
foreach (char mychar in mystring)
",mychar);
}
C 常用字串函式
1.變數.length 取字串長度 如 string str hello int len str.length len是自定義變數,str是字串的變數名 console.writeline len 輸出結果 5 2.變數.substring 引數1,引數2 擷取字串的一部分,引數1為左起始位數,引數...
c常用字串函式
c 常用字串函式 標頭檔案 string.h char strcpy char destin,char source 拷貝乙個字串到另乙個 並返回拷貝的字串內容 char strcat char destin,char source 字串拼接函式,將 source 指向的內容拼接到 destin 之...
C 常用字串函式
clone 複製引用 compareto 比較 copyto 複製物件 endswith 末尾是否匹配指定string equals 比較對像 getenumerator 獲取列舉 foreach gethashcode 獲取物件雜湊碼 gettype 獲取物件型別 gettypecode 型別碼 ...