Searches for a contiguous array of bytes determined by a given pattern. The pattern can include supported wildcard characters, as shown below.
?
match any byte
fe 00 68 98
- matches onlyfe 00 68 98
8d 11 ? ? 8f
- could match8d 11 9e ef 8f
or8d 11 0 0 8f
for example
This project is licensed under the MIT License - see LICENSE.md for details.