C 中的字串處理

2021-04-02 00:52:22 字數 625 閱讀 4011

1.string 型別的變數可以看作是char變數的唯讀陣列.

string mystring = "a string";

char mychar = mystring[1];

2.tochararry()主要是獲得乙個可寫的char陣列.

3.mystring.length用來獲取元素的個數.

string mystring = console.readline();

console.write("you type characters",mystring.length);

4..tolower()和.upper()可以把字串轉為大寫及小定形式.

5..trim()去除空格.

string userresponse = console.readline();

userresponse = userresponse.trim();

6..trimstrat()和.trimend()取字串前面或後面的空格.

7..padleft()和padright()可以在字元的左邊或右邊加空格.

mystring = "myxworld";

mystring = mystring.padleft(10);  //將兩個空格加到了左邊

C 中字串的處理

c 中常見字串處理方法 string str abcdefghigklmn 1 查詢子串 str.indexof 子串 查詢子串,返回第一次子串出現的索引 str.indexof 子串 指定索引 從指定索引開始查詢,返回第一次出現子串的索引 str.lastindexof 子串 最後一次出現子串的索...

C 中的字串處理

1 字串與字元陣列間的轉換 變成字元陣列 tochararray 變成字串 new string string text char chs text.tochararray 變成字元陣列 chs 5 改值 text new string chs 變成字串2 使得字串不區分大小寫 轉化為小寫 tolo...

C 中字串的處理

using system using system.collections.generic using system.linq using system.text namespace 字串處理 char.isletter a isdigit方法判斷a是否為數字 char.isdigit a islo...