Click here to Skip to main content
Click here to Skip to main content

Wildcard string compare (globbing)

By , 15 Feb 2005
 

Usage:

This is a fast, lightweight, and simple pattern matching function.

if (wildcmp("bl?h.*", "blah.jpg")) {
  //we have a match!
} else {
  //no match =(
}

Function:

int wildcmp(const char *wild, const char *string) {
  // Written by Jack Handy - <A href="mailto:jakkhandy@hotmail.com">jakkhandy@hotmail.com</A>
  const char *cp = NULL, *mp = NULL;

  while ((*string) && (*wild != '*')) {
    if ((*wild != *string) && (*wild != '?')) {
      return 0;
    }
    wild++;
    string++;
  }

  while (*string) {
    if (*wild == '*') {
      if (!*++wild) {
        return 1;
      }
      mp = wild;
      cp = string+1;
    } else if ((*wild == *string) || (*wild == '?')) {
      wild++;
      string++;
    } else {
      wild = mp;
      string = cp++;
    }
  }

  while (*wild == '*') {
    wild++;
  }
  return !*wild;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Jack Handy
Web Developer
United States United States
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: Many thanks, with 1 small gripe .. PinmemberVoja Intermajstor24-Nov-04 23:26 
GeneralNice code... Pinmembervoja2125-Aug-04 2:30 

This is realy nice & and useful code. I used to write something similar, but your example is simplier and shorter.
Because it lacks comments, I spent some time to understand (before I saw comment form Targys Hmmm | :| - real tutorial Wink | ;) ) and it is clear now. Thanks to both of you!
 
To 'wise' guys, flamers, and other people who has nothing to do instead of arguing:
- If the code has a bug, report but don't pretend you are a genius or a guru. If you can do it better, submit an article.
If you don't like the code, don't use it!
 
And about NULL pointers:
Idiot-proofing should be implemented at the level where data (function arguments) is acquired and prepared, not in such low-level function.
Besides that, I tested several functions from string.h with NULL parameters and every single one threw an exception. No further comments...
 
Regards, Voja
GeneralSlight efficiency improvement PinmemberBill Buklis9-Jul-04 6:53 

Great piece of code, but I have one minor improvement. It appears to me that the variable "cp" doesn't do anything and servers no purpose.
 
If I'm correct, then you can safely remove the line:
cp = string+1;
 
and also remove:
string = cp;
 
and replace:
cp = string++;
 
with:
++string;
 

I'm believe the results would be identical.

GeneralRe: Slight efficiency improvement PinmemberBill Buklis9-Jul-04 7:19 
QuestionPathMatchSpec (shlwapi.h)? Pinmemberpeterchen28-Jun-04 6:56 
Just a thought:
the PathMatchSpec SLWU API could provide similar. I guess it does have some differences (e.g. allowing to specify multiple specs, separated by semicolon), but it might be a simple alternative for many similar tasks.
 

 

we are here to help each other get through this thing, whatever it is Vonnegut jr.

sighist || Agile Programming | doxygen

AnswerRe: PathMatchSpec (shlwapi.h)? PinmemberJack Handy13-Feb-05 9:56 
GeneralDoesnt seem to work well.. PinsussBikram Singh13-May-04 1:56 
Tried these wildcards, and they show different results in your code and in Windows Explorer's search command.
 
??x*
*so*
??so*
??so??
 
Lack of comments in the code also make it a bit difficult to understand. On the whole however, good job!

 

Bikram

GeneralRe: Doesnt seem to work well.. PinmemberJack Handy21-Jun-04 9:13 
GeneralCase Insensitive wildcmp PinmemberTechiex16-Mar-04 9:36 
I want case insenstive wildcmp function. Could anyone help me?
GeneralRe: Case Insensitive wildcmp PinmemberNeville Franks16-Mar-04 9:52 
GeneralRe: Case Insensitive wildcmp PinmemberTechiex23-Mar-04 9:33 
GeneralRe: Case Insensitive wildcmp PinmemberDavidCrow23-Feb-05 2:24 
GeneralRe: Case Insensitive wildcmp PinmemberVic Mackey23-Feb-05 8:00 
GeneralRe: Case Insensitive wildcmp PinmemberDavidCrow23-Feb-05 8:22 
Vic Mackey wrote:
Be careful when using toupper(), some of the CRT variations of this function _only_ work when the input is known to be lowercase.
 
Which is why I specified toupper() instead of _toupper(). The latter is nothing but a #define directive that does no checking.
 
In any case, I was simply responding to Techiex's statement that "toupper doesnt support char characters."
 

"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow


GeneralRe: Case Insensitive wildcmp Pinmemberf_randy12-Jun-06 18:13 
GeneralExcellent code! PinmemberHans Dietrich16-Jul-03 19:40 
Very nice, compact, works great and is very fast. Thanks, Jack!
 
Best wishes,
Hans
Generalchecking for null PinmemberJack Handy13-Mar-03 20:38 
I've seen a few people in these boards complain that I didn't check for null pointers in this function. This is a C function and the last time I checked, passing NULL to strcmp or any other C string function will segfault. I'm not saying this is great, and if you wanted to add a check for null, that would be fine. I just don't think that this is a 'bug' (if you can even call it that) worth flaming an otherwise great function.
 
-Jack
 

There are 10 types of people in this world, those that understand binary and those who don't.


GeneralRe: checking for null PinsussAnonymous15-Mar-03 20:10 
GeneralRe: checking for null PinmemberJack Handy18-Mar-03 13:25 
Generalgreat code, but ... PinsussAnonymous12-Mar-03 3:17 
great code, but if I'm not mistaken
cp can point beyon string array bounds.
try: wild="*a", string="xyzab"
 
correction:
string = cp++;
should be changed to:
string = cp;
if(*cp) cp++;
GeneralRe: great code, but ... PinmemberJack Handy13-Mar-03 20:34 
GeneralRe: great code, but ... PinsussAnonymous15-Mar-03 20:08 
GeneralRe: great code, but ... PinmemberJack Handy18-Mar-03 13:25 
GeneralRe: great code, but ... PinsussAnonymous19-Mar-03 23:13 
GeneralNice PinmemberChris Richardson16-Jan-03 10:58 
I saw this one a long time ago, and finally have a use for it. Thank you very much.
 
Chris Richardson
 
Programmers find all sorts of ingenious ways to screw ourselves over. - Tim Smith
GeneralRe: Nice PinmemberJack Handy20-Jan-03 11:56 
GeneralCool Code PinsussAnonymous6-Dec-02 11:09 
I converted this into C# and bingo...
 
I tried to break it but couldn't Smile | :)
GeneralRe: Cool Code Pinmemberhector santos1-Mar-03 1:53 
GeneralRe: Cool Code PinsussKent C. Dorner2-Mar-03 5:32 
GeneralRe: Cool Code Pinmembergebrudergrimm28-Dec-03 10:18 
GeneralRe: Cool Code PinmemberBrcKcc15-Jun-04 8:18 
GeneralYes man - you a really cool developer PinmemberStanislav Panasik23-Oct-02 19:06 
Hi !
 
Wery useful function, Smile | :) save at least a one sigarette lifetime Smile | :)
Seriously - great code.
 
Stanislav.
GeneralRe: Yes man - you a really cool developer PinsussAnonymous28-Mar-04 13:43 
GeneralPseudo Code... Pinmemberblahblah18-Apr-02 10:45 
Could anyone explain how this code works for me? I am having trouble trying to figure out what is going on in a couple places. I would think a short explination would help out some other people like me who don't know C. Thanks in advance!
GeneralRe: Pseudo Code... PinmemberTargys8-Jan-03 2:43 
Generaltoo complicated PinmemberThe C++ Guru21-Mar-02 21:31 
why use local variables and so many loops? it can be much easier to match two strings. i don't understand why so many people spend hours to search the web for wildcard matching when they can write it themselves in 5 minutes time??!
the code below could be shorter but it's easier to read like this.
i didn't debug it very much but it will work, though.
 
// -------------------------------------------------------------------
int wildcmp(const char* wild, const char* string)
// -------------------------------------------------------------------
{
   if(*wild == *string)
      return '\0' == *string || wildcmp(++wild, ++string);
 
   if('\0' == *string)
      return '*' == *wild && wildcmp(++wild, string);
 
   switch(*wild)
   {
   case '?':
      return wildcmp(++wild, ++string);
 
   case '*':
      wild++;
 
      if('\0' == *wild)
         return 1;
     
      while(*string != '\0')
         if(wildcmp(wild, string++))
            return 1;
     
   default:
      return 0;
   }
}
 
yours,
the c++ guru himself.
GeneralRe: too complicated PinmemberBig Spender22-Mar-02 0:23 
GeneralRe: too complicated PinmemberThe C++ Guru22-Mar-02 0:34 
GeneralRe: too complicated PinmemberJack Handy22-Mar-02 15:23 
GeneralRe: too complicated PinmemberThe C++ Guru22-Mar-02 21:40 
GeneralRe: too complicated PinmemberJack Handy22-Mar-02 22:26 
GeneralRe: too complicated PinmemberHockey19-Apr-03 9:25 
GeneralRe: too complicated Pinmemberdouglashogan25-Jan-04 12:34 
GeneralRe: too complicated PinmemberJack Handy25-Jan-04 12:40 
GeneralRe: too complicated Pinmemberdouglashogan25-Jan-04 12:50 
GeneralRe: too complicated PinmemberJim Bob22-Mar-02 15:29 
GeneralRe: too complicated PinmemberSimon Capewell22-May-02 2:48 
GeneralRe: too complicated PinmemberTargys8-Jan-03 1:57 
GeneralRe: too complicated PinsussThe C++ Guru24-Feb-03 10:43 
GeneralRe: too complicated PinmemberJack Handy24-Feb-03 16:52 
Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 15 Feb 2005
Article Copyright 2001 by Jack Handy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid