请教C++高手,我想截取中英文混合字符串,并与另一段中文字符串对比,要怎么做,试过好多办法都不行
2个回答
展开全部
#include < stdio.h >
#include < string.h >
#include <malloc.h>
void main()
{
char *p,*q, *t;
p=(char*)malloc(100);memset(p, 0,100);
q=(char*)malloc(100);memset(q,0,100);
gets(p);
gets(q);
t=strstr(p, q);
if (t!=NULL)
{
printf("Yes\n");
}
}
//不管字符串是中文还是英文,在内存里都是二进制码,只要能匹配就是能包含, 如上面测试
//输入:它是yes的,包括逗号
ssf我是中国人,tmd
中国人,t
Yes
Press any key to continue
#include < string.h >
#include <malloc.h>
void main()
{
char *p,*q, *t;
p=(char*)malloc(100);memset(p, 0,100);
q=(char*)malloc(100);memset(q,0,100);
gets(p);
gets(q);
t=strstr(p, q);
if (t!=NULL)
{
printf("Yes\n");
}
}
//不管字符串是中文还是英文,在内存里都是二进制码,只要能匹配就是能包含, 如上面测试
//输入:它是yes的,包括逗号
ssf我是中国人,tmd
中国人,t
Yes
Press any key to continue
追问
我面对的问题是,有大量的中英混合字符串,但后者是固定的,我要从大量的中英混合字符串中找到包含特定中文字符串的,我想达到这个效果,有办法么
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询