String 型別

爱新觉罗LQ發表於2024-09-23

String 型別

判空 (empty())

string s;
if (s.empty())

長度【size() / length()】

s.c_str():返回一個字串的內容指標

這個函式的引入是為了與c語言相容,在 c 語言中沒有 string 型別,所以我們得透過 string 類物件的 c_str() 成員函式轉換成 c語言的字串樣式

string s10 = "abC";
const char* = s10.c_str();  //  abC

遍歷

string s = "I love you";
for (auto &c : s1)
{
  //  toupper() 轉成大寫字元
  c = toupper(c)
}

相關文章