C 字符串 strpbrk() 函数
示例
打印从第一个数字开始的字符串部分
char myStr[] = "I think 4096 bytes should be enough";
char *pos = strpbrk(myStr, "0123456789");
if (pos != NULL) {
printf("%s", pos);
}
自己尝试一下 »
定义和用法
The strpbrk()
函数在字符串中搜索第一个出现的任何指定字符,并返回指向字符串中该位置的指针。
如果未找到任何字符,则返回 NULL
。
The strpbrk()
函数在 <string.h>
头文件中定义。
语法
strpbrk(void * str, void * search);
参数值
参数 | 描述 |
---|---|
str | 必需。要搜索的字符串。 |
search | 必需。包含要搜索的一组字符的字符串。 |
技术细节
返回值 | 指向搜索字符中第一个出现的任何字符位置的 char 类型指针,如果未找到任何字符,则返回 NULL。 |
---|