c++的string方法
时间: 2023-12-07 18:35:31 浏览: 65
C++中string的用法
C++中的string类提供了很多有用的方法,以下是一些常用的方法:
1. length():返回字符串的长度。
2. substr(pos, len):返回从pos位置开始,长度为len的子串。
3. find(str, pos):在字符串中查找str第一次出现的位置,从pos位置开始查找。
4. replace(pos, len, str):用str替换从pos位置开始,长度为len的子串。
5. erase(pos, len):删除从pos位置开始,长度为len的子串。
6. insert(pos, str):在pos位置插入字符串str。
阅读全文