1.變數.length:取字串長度
如:string str=」hello」;
int len=str.length;//len是自定義變數,str是字串的變數名
console.writeline("",len);
輸出結果:5
2.變數.substring(引數1,引數2):
擷取字串的一部分,引數1為左起始位數,引數2為擷取幾位。
如:string str=」hello」;
console.writeline("",str.substring(1,2));
輸出結果:el
3.char.iswh itespace(字串變數,位數)
查指定位置是否空字元
如: string str="he llo";
console.writeline (char.iswhitespace(str,2));
輸出結果:true
4.char.ispunctuation('字元')
查字元是否是標點符號
如:console.writeline (char.ispunctuation('a'));
console.writeline (char.ispunctuation('!'));
輸出結果:false true
5. trim() :
清除字串前後空格
如:string str=」 hello 」;
console.writeline(「」,str.trim());
輸出結果:hello
6.變數.replace(「要替換的」,」替換為」)
字串替換
如:string str=」helle」;
console.writeline(「」,str.replace(「e」,」o」));
輸出結果:hello
7. split()
將字串拆分為子字串(如將句子拆分為各個單詞)
split() 方法使用分隔符(如空格字元)char 陣列,並返回乙個子字串陣列。您可以使用 foreach 訪問此陣列。
如:char delimit = new char ;
string s14 = "the cat sat on the mat.";
foreach (string substr in s14.split(delimit))
console.writeline(substr);
輸出結果:
thecat
saton
themat.
8. toupper() 和 tolower():
更改大小寫字母
如:string str=」hello」;
console.writeline(str.toupper());
輸出結果:hello
9. indexof() 、lastindexof()
查詢字串中指定字元或字串首次(最後一次)出現的位置,返回
索引值.
如: string str=」hello」;
str.indexof("e"); //查詢「e」在str中的索引值(位置)
結果為:1
str.indexof("ll");//查詢「el」的第乙個字元在str中
的索引值(位置)
結果為:2
str.indexof("字串",3,2);//從str1第4個字元起,查詢2個字元,查詢「字串」的第乙個字元在str1中的索引值(位置)
如:string str=」hellogood」;
str.indexof(「og」,3,2);
輸出結果:-1
10. str1.endswith(str2);
檢測字串str1是否以字串str2結尾,返回布林值.
如: string str1 = "hi,hello";
string str2 = "hello";
console.writeline(".endswith的用法」+ str1.endswith(str2));
輸出結果:true
11. str1.equals(str2);
檢測字串str1是否與字串str2相等,返回布林值
12. insert()
在字串中指定索引位插入指定字元。如:
str1.insert(2,"字");在str1的第二個字元處插入「人」,如果str1="中國",插入後為「中國人」;
13.remove():
從指定位置刪除指定位數的字元
如:string str=」hellloeo」;
console.writeline(str.remove(4,3));
輸出結果:hello
C 常用字串函式
1.字串比較 字串.comparto 目標字串 a comparto b 2.查詢子串 字串.indexof 子串,查詢其實位置 字串.lastindexof 子串 最後一次出現的位置 str.indexof ab 0 3.插入子串 字串.insert 插入位置,插入子串 s.insert 2,ab...
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 型別碼 ...