资源简介
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)
{
- 上一篇:通用红黑树Tree-Map容器纯C实现
- 下一篇:c++深度优先搜索实现矩阵互斥问题
评论
共有 条评论