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
Member
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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: Depends on whether you need to optimize the last few nanoseconds out of it... PinmemberErwin de GRoot29 Mar '10 - 8:37 
GeneralYet another version - 25% faster, I think [modified] PinmemberRenniePet1 Apr '10 - 8:24 
GeneralRe: Yet another version - 25% faster, I think Pinmemberaleks1k21 Sep '11 - 2:47 
QuestionI used this function but I how I can catch variables from the * ??? Pinmembermoh.hijjawi20 Oct '09 - 1:55 
AnswerRe: I used this function but I how I can catch variables from the * ??? PinmemberRenniePet1 Apr '10 - 11:27 
Questionany updates ? Pinmemberalhambra-eidos2 Jul '09 - 5:12 
GeneralImproved matching with end-of-text PinmemberAnders Heie11 May '09 - 15:20 
GeneralRe: Improved matching with end-of-text: some cases don't work properly! Pinmemberroadrunner31412 Aug '09 - 3:35 
QuestionPathMatchSpec instead? Pinmemberkintz25 Mar '09 - 8:55 
AnswerRe: PathMatchSpec instead? PinmemberMandatoryDefault31 Aug '09 - 10:39 
Questionwchar_t version? Pinmemberrmorales8729 Nov '08 - 20:16 
AnswerRe: wchar_t version? Pinmemberrazvar31 Mar '11 - 21:49 
Generalwildcmp in XBLite PinmemberCodeGibbon27 Nov '08 - 13:56 
GeneralWildcard string compare in C# Pinmemberhaiquang10 Nov '08 - 22:15 
GeneralRe: Wildcard string compare in C# Pinmemberhaiquang3 Aug '09 - 22:22 
GeneralC# Direct Port Pinmemberhempels23 Sep '08 - 15:10 
General...and yet another C# port [modified] PinmemberDVF27 Aug '10 - 16:59 
GeneralRe: ...and yet another C# port PinmemberVUnreal21 Sep '10 - 11:22 
General[Message Removed] Pinmemberstonber18 Sep '08 - 14:22 
GeneralUsing in Artistic Style Pinmemberjimp023 Apr '08 - 4:43 
GeneralGeez... Pinmemberlarryfr5 Mar '08 - 9:39 
QuestionConvert to a replace? Pinmemberwilliaps20 Mar '07 - 8:31 
GeneralC# RexExp version Pinmemberspinsane4 Nov '06 - 6:30 
GeneralKudos Pinmemberquantumred14 Oct '06 - 4:37 
GeneralRe: Kudos Pinmembermilkplus24 Feb '10 - 11:19 

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 15 Feb 2005
Article Copyright 2001 by Jack Handy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid