C语言,用sscanf,怎样找出“<title>????</title>”这个字符串中,两个“<title>”之间的字符串啊
3个回答
展开全部
借楼上的代码一用
#include <stdio.h>
void main()
{
char * cstr="<title>test</title>";
char buf[100];
sscanf(cstr,"<title>%s</title>",buf);
printf("%s\n",buf);
system("pause");
}
把楼上代码中的
sscanf(cstr,"%*[^>]>%[^<]",buf);改为
sscanf(cstr,"<title>%s</title>",buf);
#include <stdio.h>
void main()
{
char * cstr="<title>test</title>";
char buf[100];
sscanf(cstr,"<title>%s</title>",buf);
printf("%s\n",buf);
system("pause");
}
把楼上代码中的
sscanf(cstr,"%*[^>]>%[^<]",buf);改为
sscanf(cstr,"<title>%s</title>",buf);
更多追问追答
追问
为什么我把字符串改成这样char cstr[3000]="???html{overflow-y:auto";,返回就是空啦
追答
sscanf(cstr,"%s",buf);只接受???这种格式的。
"???html{overflow-y:auto"不是以开头,也不是以结尾,所以读不到字符。
展开全部
#include <stdio.h>
void main()
{
char * cstr="<title>test</title>";
char buf[100];
sscanf(cstr,"%*[^>]>%[^<]",buf);
printf("%s\n",buf);
system("pause");
}
或者直接用
sscanf(cstr,"%<title>%[^<]",buf);
void main()
{
char * cstr="<title>test</title>";
char buf[100];
sscanf(cstr,"%*[^>]>%[^<]",buf);
printf("%s\n",buf);
system("pause");
}
或者直接用
sscanf(cstr,"%<title>%[^<]",buf);
追问
为什么我把字符串改成这样char cstr[3000]="???html{overflow-y:auto";,返回就是空啦
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以这样
int main(int argc,char* argv[])
{
char *a="<title>????</title>";
int b;
char *c=(char *)malloc(strlen(a));
b=strlen("</title>");
strcpy(c,a+strlen("<title>"));
c[strlen(c)-b]='\0';
printf("%s\n",c);
free(c);
return 0;
}
int main(int argc,char* argv[])
{
char *a="<title>????</title>";
int b;
char *c=(char *)malloc(strlen(a));
b=strlen("</title>");
strcpy(c,a+strlen("<title>"));
c[strlen(c)-b]='\0';
printf("%s\n",c);
free(c);
return 0;
}
追问
怎么把
char *a="???html{overflow-y:auto";
改成这样,就不行啦
追答
int main(int argc,char* argv[])
{
char *a="???html{overflow-y:auto";
int b;
char *d;
char *c=(char *)malloc(strlen(a));
b=strlen(strstr(a,""));
d=strstr(a,"");
strcpy(c,d+strlen(""));
c[strlen(c)-b]='\0';
printf("%s\n",c);
free(c);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询