在 C++ 中,封装了一个 string 类型,用于表示字符串。该字符串类型提供了一系列的方法,可用于修改和替换字符串。下面列出了一些常用的方法:
assign():用指定的字符串替换当前字符串的内容。
string str = "hello";
str.assign("world");
// 现在 str 的值为 "world"
append() 和 insert():分别用于向字符串的末尾或指定位置添加字符。
// append() 用法
string str = "hello";
str.append(" world");
// 现在 str 的值为 "hello world"
// insert() 用法
string str = "hello";
str.insert(3, " world");
// 现在 str 的值为 "hel worldlo"
erase() 和 clear():分别用于删除指定位置的字符和清空字符串的内容。
// erase() 用法
string str = "hello";
str.erase(2, 3);
// 现在 str 的值为 "he"
// clear() 用法
string str = "hello";
str.clear();
// 现在 str 的值为空字符串
replace():用指定的字符串替换当前字符串中的指定字符。
string str = "hello";
str.replace(1, 2, "ooo");
// 现在 str 的值为 "hooolo"
substr():截取字符串的一部分。
string str = "hello world";
string substr = str.substr(6, 5);
// 现在 substr 的值为 "world"
find() 和 rfind():分别用于在字符串中查找指定字符或子串的位置。其中,find() 从字符串的开头开始查找,rfind() 从字符串的结尾开始查找。
string str = "hello world";
int pos = str.find("o");
// pos 的值为 4
pos = str.rfind("o");
// pos 的值为 7
需要注意的是,以上方法都是 string 类型中的成员方法,因此要通过 string 对象来调用。此外,由于字符串类型是一个类,因此它还提供了一些其他的成员方法,例如 size()、empty()、front()、back() 等,可用于操作和查询字符串的相关信息。