目录
每个函数的介绍与示例
例子
结果
结论
这些都是C++中string类的成员函数,用于在字符串中查找特定字符或子串。
1. find():此函数用于查找子串在字符串中首次出现的位置。如果找到,返回的位置是子串在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.find("world"); // pos == 7
2. rfind():此函数用于查找子串在字符串中最后一次出现的位置。如果找到,返回的位置是子串在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.rfind("world"); // pos == 7
3. find_first_of():此函数用于查找字符串中第一个出现指定字符的位置。如果找到,返回的位置是字符在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.find_first_of("Hello, world!"); // pos == 0
4. find_last_of():此函数用于查找字符串中最后一个出现指定字符的位置。如果找到,返回的位置是字符在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.find_last_of("Hello, world!"); // pos == 12
5. find_first_not_of():此函数用于查找字符串中第一个不包含指定字符的位置。如果找到,返回的位置是字符在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.find_first_not_of("HeLo"); // pos == 2
6. find_last_not_of():此函数用于查找字符串中最后一个不包含指定字符的位置。如果找到,返回的位置是字符在原字符串中的开始位置。如果没有找到,返回string::npos。
例如:
string s = "Hello, world!";
size_t pos = s.find_last_not_of("HeLo"); // pos == 12
注意:这些函数都是区分大小写的,如果你需要忽略大小写,可以在调用前使用std::transform函数将所有字符转化为大写或小写。
std::string s = "abc Hello, world! world world hello";
std::cout << "find:" << s.find("world") << std::endl;
std::cout << "rfind:" << s.rfind("world") << std::endl;
std::cout << "find_first_of:" << s.find_first_of("Hello, worlld!") << std::endl;
std::cout << "find_last_of:" << s.find_last_of("Hello, wohrld!") << std::endl;
string s1 = "Hello, world!";
std::cout << "find_first_not_of:" << s1.find_first_not_of("HeLo") << std::endl;
std::cout << "find_last_not_of:" << s1.find_last_not_of("HeLo") << std::endl;
find:11
rfind:24
find_first_of:3
find_last_of:34
find_first_not_of:2
find_last_not_of:12
find: 查找子串在字符串中第一次出现的位置,必须匹配完整子串
rfind: 查找子串在字符串中最后一次出现的位置,必须匹配完整子串
find_first_of: 查找子串中任意字符在字符串中第一次出现的位置,任意子串中字符
find_last_of: 查找子串中任意字符在字符串中最后一次出现的位置,任意子串中字符
find_first_not_of: 查找字符串中第一个不包含在待查找字符串中的字符的位置,也是任意字符
find_last_not_of: 查找字符串中最后一个不属于待查找字符串中的字符的位置,也是任意字符