在C++中,rfind函數用于在字符串中查找指定子字符串最后一次出現的位置。它的語法如下:
size_t rfind (const string& str, size_t pos = npos) const;
其中,str為要查找的子字符串,pos為從哪個位置開始查找,默認為字符串末尾。
該函數返回子字符串在原字符串中最后一次出現的位置的索引,如果未找到則返回string::npos
。
示例:
#include <iostream>
#include <string>
int main() {
std::string str = "hello world";
size_t pos = str.rfind("world");
if (pos != std::string::npos) {
std::cout << "Substring found at position: " << pos << std::endl;
} else {
std::cout << "Substring not found" << std::endl;
}
return 0;
}
在上面的例子中,rfind函數會查找字符串"world"在"hello world"中最后一次出現的位置,輸出為"Substring found at position: 6"。