clone 複製引用
compareto 比較
copyto 複製物件
endswith 末尾是否匹配指定string
equals 比較對像
getenumerator 獲取列舉 foreach ...
gethashcode 獲取物件雜湊碼
gettype 獲取物件型別
gettypecode 型別碼
indexof 索引指向int start開始的第乙個string
indexofany 任意char匹配
insert 插入string
lastindexof 索引指向int start結束的第乙個string (從右望左)
lastindexofany 任意char匹配
length 長度,陣列為大小
padleft 左面添string到指定長度
padright 右面添string到指定長度
remove 從string中刪除,陣列為刪除乙個string
replace 替換
split 拆分string 為string
startswith 開始是否與指定string匹配
substring 從int start到int length獲取子字串
tochararray 轉化成char
tolower 小寫
tostring 轉化成字串型別
toupper 大寫
trim 兩頭去除空格
trimend "右面"去空格
trimstart "左面"去空格
C 常用字串函式
1.變數.length 取字串長度 如 string str hello int len str.length len是自定義變數,str是字串的變數名 console.writeline len 輸出結果 5 2.變數.substring 引數1,引數2 擷取字串的一部分,引數1為左起始位數,引數...
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 之...