Krauss matching wildcards algorithm

From HandWiki

In computer science, the Krauss matching wildcards algorithm is a pattern matching algorithm. Based on the wildcard syntax in common use, e.g. in the Microsoft Windows command-line interface, the algorithm provides a non-recursive mechanism for matching patterns in software applications, based on syntax simpler than that typically offered by regular expressions.

History

The algorithm is based on a history of development, correctness and performance testing, and programmer feedback that began with an unsuccessful search for a reliable non-recursive algorithm for matching wildcards. An initial algorithm, implemented in a single while loop, quickly prompted comments from software developers, leading to improvements.[1] Ongoing comments and suggestions[2][3] culminated in a revised algorithm still implemented in a single while loop but refined based on a collection of test cases and a performance profiler.[4] The experience tuning the single while loop using the profiler prompted development of a two-loop strategy that achieved further performance gains, particularly in situations involving empty input strings or input containing no wildcard characters.[5] The two-loop algorithm is available for use by the open-source software development community, under the terms of the Apache License v. 2.0, and is accompanied by test case code.

Usage

The algorithm made available under the Apache license is implemented in both pointer-based C++ and portable C++ (implemented without pointers). The test case code, also available under the Apache license, can be applied to any algorithm that provides the pattern matching operations below. The implementation as coded is unable to handle multibyte character sets and poses problems when the text being searched may contain multiple incompatible character sets.

Pattern matching operations

The algorithm supports three pattern matching operations:

  • A one-to-one match is performed between the pattern and the source to be checked for a match, with the exception of asterisk (*) or question mark (?) characters in the pattern.
  • An asterisk (*) character matches any sequence of zero or more characters.
  • A question mark (?) character matches any single character.

Examples

  • *foo* matches any string containing "foo".
  • mini* matches any string that begins with "mini" (including the string "mini" itself).
  • ???* matches any string of three or more letters.

Applications

The original algorithm has been ported to the DataFlex programming language by Larry Heiges[6] for use with Data Access Worldwide code library. It has been posted on GitHub in modified form as part of a log file reader.[7] The 2014 algorithm is part of the Unreal Model Viewer built into the Epic Games Unreal Engine game engine.[8][9]

See also

References

  1. Krauss, Kirk (2008). Matching Wildcards: An Algorithm. Dr. Dobb's Journal. http://www.drdobbs.com/architecture-and-design/matching-wildcards-an-algorithm/210200888. 
  2. "wild card searching". alt.os.development. 2008. https://groups.google.com/forum/#!topic/alt.os.development/8-rIaarASu8. 
  3. T.J. (2014). "wild card matching in text string". Stack Overflow. https://stackoverflow.com/questions/21409588/wild-card-matching-in-text-string. 
  4. Krauss, Kirk (2014). Matching Wildcards: An Empirical Way to Tame an Algorithm. Dr. Dobb's Journal. http://www.drdobbs.com/architecture-and-design/matching-wildcards-an-empirical-way-to-t/240169123. 
  5. Krauss, Kirk (2018). "Matching Wildcards: An Improved Algorithm for Big Data". Develop for Performance. http://www.developforperformance.com/MatchingWildcards_AnImprovedAlgorithmForBigData.html. 
  6. Heiges, Larry (2008). "Text compare function - generalTextCompare.txt". Data Access Worldwide Code Library. https://support.dataaccess.com/Forums/showthread.php?1064-Text-compare-function-generalTextCompare-txt-(0-1). 
  7. Deniskore (2013). "Deniskore/wildcard/CLogReader.cpp". Popular repositories. GitHub. https://github.com/Deniskore/wildcard/blob/master/CLogReader.cpp.  Lines 173-279.
  8. gildor2 (2016). "UModel/Core/Core.cpp". Unreal Engine Model Viewer (UE Viewer). GitHub. https://github.com/gildor2/UModel/blob/master/Core/Core.cpp.  Lines 334-435.
  9. gildor2 (2016). "History for UModel/Core/Core.cpp". Unreal Engine Model Viewer (UE Viewer). https://github.com/gildor2/UModel/commits/master/Core/Core.cpp.