codecamp

strpbrk

 原型:extern char *strpbrk(char *s1, char *s2);
       
 用法:#include <string.h>
 
 功能:在字符串s1中寻找字符串s2中任何一个字符相匹配的第一个字符的位置,空字符NULL不包括在内。
 
 说明:返回指向s1中第一个相匹配的字符的指针,如果没有匹配字符则返回空指针NULL。

 
 举例:


     // strpbrk.c
     
     #include <syslib.h>
     #include <string.h>
     main()
     {
       char *s1="Welcome To Beijing";
       char *s2="BIT";
       char *p;
       
       clrscr();
               
       p=strpbrk(s1,s2);
       if(p)
         printf("%s\n",p);
       else
         printf("Not Found!\n");
       p=strpbrk(s1, "Da");
       if(p)
         printf("%s",p);
       else
         printf("Not Found!");
       getchar();
       return 0;
     }


strncpy
strrev
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

alloi动态内存

stdio输入输出函数

stdlib基础库函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }