08-17-2016 03:06 AM - edited 08-17-2016 03:07 AM
Hi All,
I have a byte array which i want to extract some information.
I need to extract 60 cells from the array, so using the index function to form a sub array is not pretty (wiring in 60 constants). Is there another way to do this ? i.e. inex between limits ?
Thanks,
Richard.
Solved! Go to Solution.
08-17-2016 03:09 AM - edited 08-17-2016 03:10 AM
Do you want to extract any intermediate values or values from index 2 to 10 ?
08-17-2016 03:12 AM
Hi,
I have 74 bytes in my array, and i wish to extract bytes 11 through to 71. Hope what I am asking makes sense,
Thanks,
RIchard
08-17-2016 03:13 AM
08-17-2016 03:15 AM
You can use array subset, where you need to feed starting index and Length you need
08-17-2016 03:17 AM
Thankyou PalanivelT and Twardak,
Just what i needed!
Thanks again,
Richard