资源简介

C++实现字符串匹配函数,匹配中可以包括通配符

资源截图

代码片段和文件信息

/**
  * Function: wildcmp
  * Description: wildcard match
  * Input:
  * Output:
  * Return:
  * Others:
  */
int wildcmp(const char *wild const char *string)
{
    const char* cp = NULL;
const char* mp = NULL;
//此循环匹配
    while ((*string) && (*wild != ‘*‘)) 
{
        if ((*wild != *string) && (*wild != ‘?‘))
{
            return 0;
        }
        wild++;
        string++;
    }

    while (*string)
{
        

评论

共有 条评论

相关资源