Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C++
Article

Wildcard string compare (globbing)

Rate me:
Please Sign up or sign in to vote.
4.90/5 (82 votes)
15 Feb 2005 1.2M   96   144
Matches a string against a wildcard string such as "*.*" or "bl?h.*" etc. This is good for file globbing or to match hostmasks.

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


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Case Insensitive wildcmp Pin
Neville Franks16-Mar-04 9:52
Neville Franks16-Mar-04 9:52 
GeneralRe: Case Insensitive wildcmp Pin
23-Mar-04 9:33
suss23-Mar-04 9:33 
GeneralRe: Case Insensitive wildcmp Pin
David Crow23-Feb-05 2:24
David Crow23-Feb-05 2:24 
GeneralRe: Case Insensitive wildcmp Pin
Vic Mackey23-Feb-05 8:00
Vic Mackey23-Feb-05 8:00 
GeneralRe: Case Insensitive wildcmp Pin
David Crow23-Feb-05 8:22
David Crow23-Feb-05 8:22 
GeneralRe: Case Insensitive wildcmp Pin
f_randy12-Jun-06 18:13
f_randy12-Jun-06 18:13 
GeneralExcellent code! Pin
Hans Dietrich16-Jul-03 19:40
mentorHans Dietrich16-Jul-03 19:40 
Generalchecking for null Pin
Jack Handy13-Mar-03 20:38
Jack 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 Pin
Anonymous15-Mar-03 20:10
Anonymous15-Mar-03 20:10 
GeneralRe: checking for null Pin
Jack Handy18-Mar-03 13:25
Jack Handy18-Mar-03 13:25 
Generalgreat code, but ... Pin
Anonymous12-Mar-03 3:17
Anonymous12-Mar-03 3:17 
GeneralRe: great code, but ... Pin
Jack Handy13-Mar-03 20:34
Jack Handy13-Mar-03 20:34 
GeneralRe: great code, but ... Pin
Anonymous15-Mar-03 20:08
Anonymous15-Mar-03 20:08 
GeneralRe: great code, but ... Pin
Jack Handy18-Mar-03 13:25
Jack Handy18-Mar-03 13:25 
GeneralRe: great code, but ... Pin
Anonymous19-Mar-03 23:13
Anonymous19-Mar-03 23:13 
GeneralNice Pin
Chris Richardson16-Jan-03 10:58
Chris Richardson16-Jan-03 10:58 
GeneralRe: Nice Pin
Jack Handy20-Jan-03 11:56
Jack Handy20-Jan-03 11:56 
GeneralCool Code Pin
Anonymous6-Dec-02 11:09
Anonymous6-Dec-02 11:09 
GeneralRe: Cool Code Pin
hector santos1-Mar-03 1:53
hector santos1-Mar-03 1:53 
GeneralRe: Cool Code Pin
Kent C. Dorner2-Mar-03 5:32
sussKent C. Dorner2-Mar-03 5:32 
GeneralRe: Cool Code Pin
gebrudergrimm28-Dec-03 10:18
gebrudergrimm28-Dec-03 10:18 
GeneralRe: Cool Code Pin
BrcKcc15-Jun-04 8:18
BrcKcc15-Jun-04 8:18 
GeneralYes man - you a really cool developer Pin
Stanislav Panasik23-Oct-02 19:06
Stanislav Panasik23-Oct-02 19:06 
GeneralRe: Yes man - you a really cool developer Pin
Anonymous28-Mar-04 13:43
Anonymous28-Mar-04 13:43 
GeneralPseudo Code... Pin
blahblah18-Apr-02 10:45
blahblah18-Apr-02 10:45 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.