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

Converting Wildcards to Regexes

By , 15 Sep 2005
 

Introduction

Ever wondered how to do wildcards in .NET? It's not hard, all you have to do is use regular expressions. But it's not always easy to figure it out either. I found that I had to dig around for a while to figure out how to do it properly.

Even though regexes are a lot more powerful, wildcards are still good in situations where you can't expect the user to know or learn the cryptic syntax of regexes. The most obvious example is in the file search functionality of practically all OSs -- there aren't many that don't accept wildcards. I personally need wildcards to handle the HttpHandlers tag in web.config files.

Note: This method is good enough for most uses, but if you need every ounce of performance with wildcards, here is a good place to start.

Using the Code

There are three steps to converting a wildcard to a regex:

  1. Escape the pattern to make it regex-safe. Wildcards use only * and ?, so the rest of the text has to be converted to literals.
  2. Once escaped, * becomes \* and ? becomes \?, so we have to convert \* and \? to their respective regex equivalents, .* and ..
  3. Prepend ^ and append $ to specify the beginning and end of the pattern.

So, here's the golden function:

public static string WildcardToRegex(string pattern)
{
  return "^" + Regex.Escape(pattern).
  Replace("\\*", ".*").
  Replace("\\?", ".") + "$";
}

Just to make it look cool, I wrapped it in a Wildcard class that inherits Regex.

/// <summary>
/// Represents a wildcard running on the
/// <see cref="System.Text.RegularExpressions"/> engine.
/// </summary>
public class Wildcard : Regex
{
 /// <summary>
 /// Initializes a wildcard with the given search pattern.
 /// </summary>
 /// <param name="pattern">The wildcard pattern to match.</param>
 public Wildcard(string pattern)
  : base(WildcardToRegex(pattern))
 {
 }
 
 /// <summary>
 /// Initializes a wildcard with the given search pattern and options.
 /// </summary>
 /// <param name="pattern">The wildcard pattern to match.</param>
 /// <param name="options">A combination of one or more
 /// <see cref="System.Text.RegexOptions"/>.</param>
 public Wildcard(string pattern, RegexOptions options)
  : base(WildcardToRegex(pattern), options)
 {
 }
 
 /// <summary>
 /// Converts a wildcard to a regex.
 /// </summary>
 /// <param name="pattern">The wildcard pattern to convert.</param>
 /// <returns>A regex equivalent of the given wildcard.</returns>
 public static string WildcardToRegex(string pattern)
 {
  return "^" + Regex.Escape(pattern).
   Replace("\\*", ".*").
   Replace("\\?", ".") + "$";
 }
}

You can use it like any other Regex -- case-(in)sensitivity, string replacement, matching and all.

// Get a list of files in the My Documents folder
string[] files = System.IO.Directory.GetFiles(
 System.Environment.GetFolderPath(
 Environment.SpecialFolder.Personal));

// Create a new wildcard to search for all
// .txt files, regardless of case
Wildcard wildcard = new Wildcard("*.txt", RegexOptions.IgnoreCase);

// Print all matching files
foreach(string file in files)
 if(wildcard.IsMatch(file))
  Console.WriteLine(file);

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

Rei Miyasaka
Canada Canada
Member
The cows are here to take me home now...

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionThanks - just in timemembersnoopy00116 May '13 - 4:31 
GeneralMy vote of 5memberChristopher Drake2 Jan '13 - 9:05 
GeneralMy vote of 5memberMember 892678823 Sep '12 - 23:33 
QuestionDoes not work with *.*memberguest2323113 Sep '12 - 3:23 
GeneralMy vote of 5memberKuthuparakkal12 Sep '12 - 17:03 
QuestionWord wild card matching behavior a little different from this [modified]memberweciii2 Mar '12 - 5:21 
GeneralMy vote of 5membervet0n23 Feb '12 - 21:46 
SuggestionAdding More Static MethodsmemberSina Iravanian14 Dec '11 - 2:21 
QuestionRe: Adding More Static MethodsmemberDontSailBackwards6 May '13 - 14:47 
GeneralMy vote of 5memberNagy Vilmos8 Nov '10 - 2:24 
Generalbug?? with '.'memberalchemy916 Nov '09 - 4:07 
GeneralRe: bug?? with '.'memberSteve Kutnar2 Sep '10 - 6:28 
QuestionHow to add other chars - [A-Z] [modified]memberboopathi_tpgit20 Oct '09 - 2:22 
It is a nice article. I need to add character specification or limitation [a-z] or [1-9] pattern like that.. is it possible?
 
Advance Thanks
Boopathi.S
 
modified on Wednesday, October 21, 2009 10:09 AM

GeneralDifference between httphandlers and httpmodulesmembergaurav200720 Jun '08 - 0:20 
GeneralRe: Difference between httphandlers and httpmodulesmemberreinux20 Jun '08 - 6:24 
NewsThere's a new version of the RegEx Tester Tool !memberBucanerO_Slacker1 Mar '08 - 23:18 
GeneralSmall suggestionmemberDavide Icardi16 Dec '07 - 22:12 
GeneralRe: Small suggestionmemberphilippe dykmans31 May '08 - 15:39 
GeneralCorrection...memberphilippe dykmans31 May '08 - 15:45 
GeneralRe: Correction...memberDavide Icardi1 Jun '08 - 13:19 
GeneralRe: Small suggestionmembersssw285 Mar '11 - 21:25 
GeneralSimple, yet goodmembernorm .net16 May '07 - 22:33 
GeneralRe: Simple, yet goodmemberreinux17 May '07 - 5:32 
GeneralJust what I was looking for.memberRyan McFarren12 Apr '07 - 7:55 
GeneralRe: Just what I was looking for.memberreinux12 Apr '07 - 13:24 
GeneralNICEmemberBen Allfree10 Mar '07 - 5:10 
GeneralRe: NICEmemberreinux10 Mar '07 - 12:24 
QuestionDoesnt work with input string containing meta charactersmemberskk-ws31 Jan '06 - 6:41 
AnswerRe: Doesnt work with input string containing meta charactersmemberreinux1 Feb '06 - 19:03 
AnswerRe: Doesnt work with input string containing meta charactersmemberreinux26 Mar '06 - 11:22 
AnswerRe: Doesnt work with input string containing meta charactersmemberN3croman12 Jan '11 - 1:13 
QuestionA small improvement?memberJim Parsells16 Sep '05 - 10:40 
AnswerRe: A small improvement?memberJim Parsells16 Sep '05 - 16:35 
GeneralRe: A small improvement?memberreinux16 Sep '05 - 20:56 
GeneralRe: A small improvement?memberJim Parsells17 Sep '05 - 5:09 
GeneralRe: A small improvement?memberreinux17 Sep '05 - 11:48 
AnswerRe: A small improvement?memberreinux16 Sep '05 - 20:59 
GeneraliNice trick :)memberPop Catalin15 Sep '05 - 20:49 
GeneralRe: iNice trick :)memberreinux16 Sep '05 - 21:14 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 15 Sep 2005
Article Copyright 2005 by Rei Miyasaka
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid