C语言匹配字符串


#include <stdio.h>
#include <stdlib.h>int MyStr1(char * str1, char * str2)
{ int num = 1; while (*str1 != '\0') { if (*str1 != *str2) { str1++; num++; continue; } if (memcmp(str1, str2, 3) == 0) { return num; } else { str1++;
       
num++;
      continue;
      }

}

  return -1;
}

 

int MyStr(char * str1, char * str2)
{
    int num = 1;
    while (*str1 != '\0')
    {
        if (*str1 != *str2)
        {
            str1++;
            num++;
            continue;
        }
        char * temp1 = str1;
        char * temp2 = str2;
        while (*temp2 != '\0')
        {
            if (*temp1 != *temp2)
            {
                str1++;
                num++;
                break;
            }
            temp1++;
            temp2++;
        }
        if (*temp2 == '\0')
        {
            return num;
        }
    }

    return -1;
}


void test01()
{
    char * str = "abcdefg";

    int ret = MyStr(str, "fg");
    if (ret == -1)
    {
        printf("No\n");
    }
    else
    {
        printf("Yes  %d:\n", ret);
    }

}

void main()
{
    test01();


    system("pause");
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM