What is the simpliest way to find an occurance of some sequance of bytes (string) in a long byte array?
thank you in advance!!
UPD: I tried to do
my_byte_array.toString().indexOf(needle_string);
the problem is that in flash/air string consist of utf8 characters, so indexOf will return value different from offset of "string" in a byte array (actually it's zip archive)