Is there a built-in mechanism in .NET to match patterns other than Regular Expressions? I\'d like to match using UNIX style (glob) wildcards (* = any number of any characte
I don't know if the .NET framework has glob matching, but couldn't you replace the * with .*? and use regexes?