"The code is exactly
how I would like to write code and the algorithms used are very
efficient and well-documented."
Van T. Dinh, Microsoft MVP
|
|
Class: CBoyerMoore
Class that implements Boyer-Moore string searching. The Boyer-Moore string-searching algorithm provides a highly optimized method for searching for a sub-string within a string. The Boyer-Moore algorithm takes advantage of its knowledge of the string being searched for. By doing this, it is possible to search a string without examining all the characters in the string.
|
Procedure Name
|
Type
|
Description
|
|
(Declarations)
|
Declarations
|
Declarations and private variables for the CBoyerMoore class
|
|
CaseSensitive
|
Property
|
Returns whether or not the search is case sensitive. This property must be set before the FindText and Text properties.
|
|
FindText
|
Property
|
Sets the text to search for.
|
|
Text
|
Property
|
Gets the value of the text being searched.
|
|
FindNext
|
Method
|
Finds the next matching string.
This function increments the index into the search buffer each time it is called. To begin searching from the beginning of the search buffer, call the Reset method.
|
|
Reset
|
Method
|
Reset the search
|
Overview of Total Visual SourceBook
The source code in Total Visual
SourceBook includes modules and classes for Microsoft Access, Visual
Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily
add this professionally written, tested, and documented royalty-free code
into your applications to simplify your application development efforts.
Additional Resources
|
|