11-05-2015 05:26 PM
Hello,
How can I Replace 2 different bytes(in my case 2 hexadecimal numbers) in 1D array? I have an 1D array with random hexadecimal numbers continuosly flowing and in that array i have to replace 2 types of numbers. F. E. I have to replace A1 with B1 and A2 with B2 at the same time.
Can anyone show me how can I solve it?
11-05-2015 05:43 PM
And also i´d like to know if i can replace 1byte with 2 (For example that A1 with B1 and B2). And how can i do it, if its possible.
11-05-2015 06:35 PM
Use Replace Array subset to replace the first and Insert into Array to insert the second.
OR
Use Delete from Array to delete the first, and then Insert into Array to insert the two new ones.