For example, mystring is = "53 54 41 52 54 00 00 01 53 54 41 52 54 00 01 02 53 54 41 52 54 01 02 03"
What I want to do is every time I found "53 54 41 52 54" it will capture the remaining 3 bytes. So, based on the example of my string above, I want the result as below
When it first found 53 54 41 52 54, it will capture 00 00 01 then, when it found the 2nd 53 54 41 52 54, it will capture 00 01 02 then, finally when it found the 3rd 53 54 41 52 54, it will capture 01 02 03.
What is the best way to do this in VB?
Thank you in advance.
Appreciate your guidance.
A2or162?