How can I search within an array of byte for a specific byte?
For example, I use Instr(String, "something to search")
or InstrRev(String, "something to search")
for strings. I basically don't want to loop through the byte array, because I have extremely long byte arrays and I want to search bytes in a flash.
I just need the fastest and the simplest code possible for my task.
What would be a faster quicker and simpler way to search? A byte array of a file, or to stream a file with filestream and then to search within it?