std::strpbrk
来自 cppreference.com
定义在头文件中 <cstring> |
||
const char* strpbrk( const char* dest, const char* breakset ); |
||
char* strpbrk( char* dest, const char* breakset ); |
||
扫描 dest 指向的以空字符结尾的字节字符串,查找来自 breakset 指向的以空字符结尾的字节字符串的任何字符,并返回指向该字符的指针。
内容 |
[编辑] 参数
dest | - | 指向要分析的以空字符结尾的字节字符串的指针 |
breakset | - | 指向包含要搜索的字符的以空字符结尾的字节字符串的指针 |
[编辑] 返回值
指向 dest 中第一个也位于 breakset 中的字符的指针,如果不存在这样的字符,则为 null 指针。
[编辑] 备注
该名称代表“字符串指针中断”,因为它返回指向第一个分隔符(“中断”)字符的指针。
[编辑] 示例
运行此代码
#include <cstring> #include <iomanip> #include <iostream> int main() { const char* str = "hello world, friend of mine!"; const char* sep = " ,!"; unsigned int cnt = 0; do { str = std::strpbrk(str, sep); // find separator std::cout << std::quoted(str) << '\n'; if (str) str += std::strspn(str, sep); // skip separator ++cnt; // increment word count } while (str && *str); std::cout << "There are " << cnt << " words\n"; }
输出
" world, friend of mine!" ", friend of mine!" " of mine!" " mine!" "!" There are 5 words
[编辑] 另请参阅
返回仅由另一个字节字符串中未找到的字符组成的最大初始段的长度 仅由另一个字节字符串中未找到的字符组成的最大初始段的长度 (函数) | |
在字节字符串中查找下一个标记 (函数) | |
查找字符的第一次出现 (函数) | |
在另一个宽字符串中查找一个宽字符串中任何宽字符的第一个位置 (函数) | |
C 文档 for strpbrk
|