VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



InBArrBM: byte array searching improved by heaps

by Vesa Piittinen (20 Submissions)
Category: VB function enhancement
Difficulty: Advanced
Date Added: Wed 3rd February 2021
Rating: (10 Votes)

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

Download InBArrBM: byte array searching improved by heaps

Download InBArrBM: byte array searching improved by heaps (8 KB)

InBArrBM: byte array searching improved by heaps Comments

No comments have been posted about InBArrBM: byte array searching improved by heaps. Why not be the first to post a comment about InBArrBM: byte array searching improved by heaps.

Post your comment

Subject:
Message:
0/1000 characters