Does anyone know how I can find more bytes after I have found the byte sequence of my variable?
For example: in the file it will look like this: 6261725610
I'll look for this:
byte[] findBytes = { 0x62, 0x61, 0x72 };
and wanted to return this:
byte[] resultado = { 0x62, 0x61, 0x72, 0x56, 0x10 };
Enjoying, how do I subtract the last byte?
for example this:
byte[] findBytes = { 0x62, 0x61, 0x72, 0x56, 0x10 };
Turn this over:
byte[] findBytes = { 0x62, 0x61, 0x72, 0x56, 0x8 };