I have an array of bytes like :
<B0><00><01><B0><01><03><C0><00><B0><00><01><B0><01><03>
I would like to compare if one byte is in the array ( <C0>) an copy at the index of this byte selected to the end of the array
ex :
Select the <C0> and copy it to another array
<B0><00><01><B0><01><03><C0><00><B0><00><01><B0><01><03>
=> result : <C0><00><B0><00><01><B0><01><03>
Best Regards
<B0><00><01><B0><01><03><C0><00><B0><00><01><B0><01><03>
I would like to compare if one byte is in the array ( <C0>) an copy at the index of this byte selected to the end of the array
ex :
Select the <C0> and copy it to another array
<B0><00><01><B0><01><03><C0><00><B0><00><01><B0><01><03>
=> result : <C0><00><B0><00><01><B0><01><03>
Best Regards