1)size_t find (const string& str, size_t pos = 0) const; //查找对象–string类对象
(2)size_t find (const char s, size_t pos = 0) const; //查找对象–字符串
(3)size_t find (const char s, size_t pos, size_t n) const; //查找对象–字符串的前n个字符
(4)size_t find (char c, size_t pos = 0) const; //查找对象–字符
结果:找到 – 返回 第一个字符的索引
string::rfind(string, pos) 是从pos开始由右往左找,返回最后一次出现string的位置。
1 | #include <iostream> // std::cout |
1 |
|