Click here to Skip to main content
Licence 
First Posted 1 May 2001
Views 635,497
Bookmarked 87 times

Wildcard string compare (globbing)

By | 15 Feb 2005 | Article
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

About the Author

Jack Handy

Web Developer

United States United States

Member



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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhelp required for wilcard matching * and # PinmemberSaimaAsif23:56 23 Feb '12  
GeneralMy vote of 5 PinmemberPlamen Petrov21:37 13 Dec '11  
SuggestionModification with '#' as wildcard joker for digits [modified] PinmemberThomas Haase23:16 25 Sep '11  
QuestionLicence Question Pinmemberrandommark0:33 23 Nov '10  
AnswerAnother C# version, with a twist Pinmembertomlev14:50 29 Jun '10  
GeneralObscurity PinmemberChuck O'Toole18:18 25 Apr '10  
AnswerMy C# contribution - recursive, of course! PinmemberRenniePet5:21 26 Mar '10  
GeneralRe: My C# contribution - recursive, of course! PinmemberErwin de GRoot1:58 29 Mar '10  
GeneralDepends on whether you need to optimize the last few nanoseconds out of it... PinmemberRenniePet7:45 29 Mar '10  
GeneralSorry - revised numbers PinmemberRenniePet8:35 29 Mar '10  
GeneralRe: Depends on whether you need to optimize the last few nanoseconds out of it... PinmemberErwin de GRoot8:37 29 Mar '10  
GeneralYet another version - 25% faster, I think [modified] PinmemberRenniePet8:24 1 Apr '10  
GeneralRe: Yet another version - 25% faster, I think Pinmemberaleks1k2:47 21 Sep '11  
QuestionI used this function but I how I can catch variables from the * ??? Pinmembermoh.hijjawi1:55 20 Oct '09  
AnswerRe: I used this function but I how I can catch variables from the * ??? PinmemberRenniePet11:27 1 Apr '10  
Questionany updates ? Pinmemberalhambra-eidos5:12 2 Jul '09  
GeneralImproved matching with end-of-text PinmemberAnders Heie15:20 11 May '09  
GeneralRe: Improved matching with end-of-text: some cases don't work properly! Pinmemberroadrunner3143:35 12 Aug '09  
QuestionPathMatchSpec instead? Pinmemberkintz8:55 25 Mar '09  
AnswerRe: PathMatchSpec instead? PinmemberMandatoryDefault10:39 31 Aug '09  
Questionwchar_t version? Pinmemberrmorales8720:16 29 Nov '08  
AnswerRe: wchar_t version? Pinmemberrazvar21:49 31 Mar '11  
Generalwildcmp in XBLite PinmemberCodeGibbon13:56 27 Nov '08  
This is the version of the wildcmp function in XBLite programming language:
 
FUNCTION SBYTE wildcmp( wildcard$, search$)
  ' wildcmp(const char *wild, const char *string)
  ' Written by Jack Handy - jakkhandy@hotmail.com
 
  ULONG cp
  ULONG mp
  
  STRING s_txt$
  ULONG  sp 
  
  STRING w_txt$
  ULONG  wp
 
  IFZ search$   THEN RETURN $$FALSE  
  IFZ wildcard$ THEN RETURN $$FALSE
  
  w_txt$ = wildcard$ + "\0\0"   ' Just to be sure
  s_txt$ = search$   + "\0\0"
  
  DO WHILE (s_txt${sp}) && (w_txt${wp} != '*') 
    IF (w_txt${wp} != s_txt${sp} )  && (w_txt${wp} != '?') THEN RETURN $$FALSE
    
    INC wp
    INC sp
  LOOP
    
  DO WHILE (s_txt${sp})
    IF ( w_txt${wp} == '*' ) THEN    
      INC wp
      IF !(w_txt${wp}) THEN RETURN $$TRUE      
      
      mp = wp     
      cp = sp + 1 
    ELSE 
      IF (w_txt${wp} == s_txt${sp} )  || (w_txt${wp} == '?') THEN    
        INC wp
        INC sp
      ELSE
        wp = mp
      
        sp = cp                   
        IF s_txt${sp} THEN INC cp 
       
      ENDIF
    ENDIF  
  LOOP
    
  DO WHILE (w_txt${wp} == '*' )    
    INC wp
  LOOP
  
  RETURN !w_txt${wp} 
 
END FUNCTION
 

GeneralWildcard string compare in C# Pinmemberhaiquang22:15 10 Nov '08  
GeneralRe: Wildcard string compare in C# Pinmemberhaiquang22:22 3 Aug '09  

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
Web01 | 2.5.120604.1 | Last Updated 15 Feb 2005
Article Copyright 2001 by Jack Handy
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid