String 类型
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)
}