#include
#include
int main()
{
int flag;
char a[30]="iamtired";
char b[100];
scanf("%s",b);
if( strstr( b , a ) )
flag=1;
else
flag=0;
printf("flag=%d\n", flag );
return 0;
}
由于c语言自身不知吃match函数,也不支持正则表达式,因此只能够自己书写函数。但是这并不是绝对的,由于c语言很多的函数库,因此有个函数库可以找到你想要的内容。regex.h
,下载该函数库,并放在指定位置(视你的安装目录以及软件所定,详情百度),然后使用
该库里面有一个函数:
int regexec(const regex_t *preg, const char *string, size_t nmatch,regmatch_t pmatch[], int eflags);
typedef struct {
regoff_t rm_so;
regoff_t rm_eo;
} regmatch_t;
按照定义定义regmatch_t参数,然后传入就行。使用完之后,应该用void regfree(regex_t *preg);取消使用。
例子如下:
#include;
#include;
#include;
static char* substr(const char*str, unsigned start, unsigned end)
{
unsigned n = end - start;
static char stbuf[256];
strncpy(stbuf, str + start, n);
stbuf[n] = 0;
return stbuf;
}
int main(int argc, char** argv)
{
char * pattern;
int x, z, lno = 0, cflags = 0;
char ebuf[128], lbuf[256];
regex_t reg;
regmatch_t pm[10];
const size_t nmatch = 10;
pattern = argv[1];
z = regcomp(®, pattern, cflags);
if (z != 0){
regerror(z, ®, ebuf, sizeof(ebuf));
fprintf(stderr, "%s: pattern '%s' \n", ebuf, pattern);
return 1;
}
while(fgets(lbuf, sizeof(lbuf), stdin)) {
++lno;
if ((z = strlen(lbuf)) >; 0 && lbuf[z-1] == '\n')
lbuf[z - 1] = 0;
z = regexec(®, lbuf, nmatch, pm, 0);
if (z == REG_NOMATCH) continue;
else if (z != 0) {
regerror(z, ®, ebuf, sizeof(ebuf));
fprintf(stderr, "%s: regcom('%s')\n", ebuf, lbuf);
return 2;
}
for (x = 0; x < nmatch && pm[x].rm_so != -1; ++ x) {
if (!x) printf("%04d: %s\n", lno, lbuf);
printf(" $%d='%s'\n", x, substr(lbuf, pm[x].rm_so, pm[x].rm_eo));
}
}
regfree(®);
return 0;
}
如果不使用正则表达式,可以使用函数strstr,代码如下:
#include
#include
int main()
{
char str1[] = "Hello World!";
char str2[] = "Hello";
if ( !strstr(str1,str2) )
printf("existed!");
else printf("Not find!");
return 0;
}
#include
#include
int flag=0;
void main()
{ int f(char str1[],char str2[]);
char str1[20],str2[20],*s1,*s2;
printf("input string1:\n");
gets(str1);
s1=str1;
printf("input string2:\n");
gets(str2); /*str2为要验证的字串*/
s2=str2;
f(s1,s2);
if (flag==1)
printf("\nYES!\n\n");
else if (flag==0)
printf("\nNO!\n\n");
}
int f(char*s1,char*s2)
{char *p,*q;
for(;*s1!='\0';s1++)
{if (*s2==*s1) /*判断字符串中是否有和要判断的字串首字符相同的字符*/
{ flag=1;
p=s1 ; /*s1 p 为第一个相同字符的地址*/
q=s2;
for(;*q!='\0';) /*如果有则判断接下去的几个字符是否相同*/
{ if (*q++!=*p++)
{ flag=0;break;
}
}
}
if (flag==1)break;
}
return(flag);
}
#include
#include
#include
int main()
{
char a[30] = "iamtired";
char b[100];
int flag = 0;
printf("Please input a string:\n");
gets(b);
int i = 0;
int j = 0;
for (i = 0; i < strlen(b);i++)
{
if (b[i] != a[0])
{
continue;
}
for (j = 0; j < strlen(a);j++)
{
if (a[j] != b[i+j])
{
break;
}
}
if (strlen(a) == j)
{
flag = 1;
break;
}
}
printf("flag = %d", flag);
system("pause");
return 0;
}
char flg;
char a[4] ="abc";
char b[3] ="ab";
flg = strstr (a,b)//判断b是否在a里 在的话flg=1,不在flg=0