VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

InBArrBM: byte array searching improved by heaps

Vesa Piittinen  (20 Submissions)   VB function enhancement   Advanced   Wed 3rd February 2021

This code makes it possible to search byte arrays. You can search in ANSI (textfiles) or Unicode mode (native VB strings) and the function supports vbTextCompare. The search keyword is passed as a normal string for ease of use. *** This function is somewhat a proof that you can make fast stuff with native VB6 code: with a proper search algorithm even the super fast InStr can be beaten in binary compare! The function uses Boyer-Moore algorithm as its base of searching when keyword is longer than two characters. The function will perform faster if the keyword doesn't change often, as its prosessing speed is heavily based on intelligent keyword indexing. The function will also easily beat InStr when searching for a long keyword within a very long text. The code doesn't use API or TLB to help; it would be possible to increase the speed even further with the help of API and TLB. I didn't want to confuse with the use of those methods. *** The function code is commented so it should be possible to follow how it works. I've spent some time to figure out this function with this much performance, so I hope to get votes - the code should be very useful to anyone who wants to search stuff FAST :)

Rate InBArrBM: byte array searching improved by heaps (11(11 Vote))

Download InBArrBM: byte array searching improved by heaps

InBArrBM: byte array searching improved by heaps Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters