Click here to Skip to main content
15,886,519 members
Articles / Programming Languages / C#

Use wildcard characters * and ? to compare strings

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
6 May 2010CPOL 6.6K  
Using the Substring operation repeatedly as you do is apt to be very slow. Better would be to pass the starting indices and lengths of the two strings as parameters. That would require a manual loop to replace the String.Trim function, but it would avoid the need to create lots of new string...

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
20 Feb 2012PIEBALDconsult
This is much simpler: fewer new strings created, no recursion. And it allows the caller to specify how to do a string comparison.public static boolWildcardMatch( this string Subject, string Pattern, System.StringComparison...
Please Sign up or sign in to vote.
20 Feb 2012Andreas Gieriet
How about transforming first into a Regex and then letting the Regex do the work? E.g.:public static Regex GetRegex(string wildcard){ string pattern = Regex.Replace(wildcard, @"([^?*]+)?([?*])?", m => Regex.Escape(m.Groups[1].Value) +...
Please Sign up or sign in to vote.
26 Jul 2017PrzemekBenz 3 alternatives  
How to use wildcard characters & and ? to compare strings

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Unknown
Embedded systems programmer since 1994.

Comments and Discussions