Hello,
I need to search a byte[] array for a sequence of bytes. The sequence
may include wildcards. For example if the array contains 0xAA, 0xBB,
0xAA, OxDD then I want to be able to search for 0xAA, 0x?? and get two
matches... I've been all around Google but still can't find any
suggestions on how anything like this can be implemented.... . Can
someone please give me a clue? Some well-known algorithm maybe?
Thanks!
I need to search a byte[] array for a sequence of bytes. The sequence
may include wildcards. For example if the array contains 0xAA, 0xBB,
0xAA, OxDD then I want to be able to search for 0xAA, 0x?? and get two
matches... I've been all around Google but still can't find any
suggestions on how anything like this can be implemented.... . Can
someone please give me a clue? Some well-known algorithm maybe?
Thanks!
Comment