User1682543174 posted
I have a byte array of data. How can I find and replacement a part of the byte array with replacement data?
dim foo as byte foo = MY DATA
If foo was a string, then I would do: foo = replace( foo, target, replacement )
But foo is a byte array. How can I replace?