C++中的string类提供了很多有用的方法来操作字符串。下面是一些常用的方法:
- length():返回字符串的长度。
string s = "Hello"; int len = s.length(); // len为5
- size():返回字符串的长度,与length()方法作用相同。
string s = "Hello"; int size = s.size(); // size为5
- empty():检查字符串是否为空。
string s1 = ""; string s2 = "Hello"; bool is_empty1 = s1.empty(); // true bool is_empty2 = s2.empty(); // false
- clear():清空字符串。
- insert():在指定位置插入一个字符串。
string s = "Hello"; s.insert(2, "world"); // s变为"Heworldllo"
- erase():删除指定位置的字符。
string& erase (size_t pos = 0, size_t len = npos);
其中,pos
参数表示要删除的起始位置,len
参数表示要删除的字符数。默认情况下,pos
为0,len
为string::npos
,即删除从字符串开头到结尾的所有字符。
- substr():获取指定位置和长度的子字符串。
string s = "Hello"; string sub = s.substr(1, 3); // sub为"ell"
- replace():替换指定位置和长度的子字符串。
string s = "Hello"; s.replace(1, 3, "i"); // s变为"Hilo"
- find():查找指定字符串在当前字符串中第一次出现的位置。
string s = "Hello"; int pos = s.find("l"); // pos为2
- rfind():查找指定字符串在当前字符串中最后一次出现的位置。
string s = "Hello"; int pos = s.rfind("l"); // pos为3
c++