写一个c程序,从一个字符串中提取出关键字后面的数字

 

 

写一个c程序,从一个字符串中提取出关键字后面的数字_第1张图片

 

#include 

#include 

main()

{

char *s="GoldenGlobalView";

char *l="lob";

char *p;

clrscr();

p=strstr(s,l);

if(p)

printf("%s",p);

else

printf("NotFound!");

getchar();

return0;

}

//功能:从字串” string1 onexxx string2 oneyyy”中寻找”yyy”

(假设xxx和yyy都是一个未知的字串)

char *s=”string1onexxxstring2oneyyy”;

char *p;

p=strstr(s,”yyy”);

if(p!=NULL)

printf(“%s”,p);

else

printf("notfound\n");

sscanf()的用法和例子

https://blog.csdn.net/gyb510/article/details/68582132

你可能感兴趣的:(c语言基础知识,c++)