Dear All:
I want to insert the data of table into a string.
e.g.
table = {0x01,0x02,0x03,0x04}
string.char(0x0A,0x0B,0x0C,0x0D)
I want to insert all the data in the table between 0x0B and 0x0C to become string.char(0x0A,0x0B,0x01,0x02,0x03,0x04,0x0C,0x0D). How to realize that?
Thanks a lot
I want to insert the data of table into a string.
e.g.
table = {0x01,0x02,0x03,0x04}
string.char(0x0A,0x0B,0x0C,0x0D)
I want to insert all the data in the table between 0x0B and 0x0C to become string.char(0x0A,0x0B,0x01,0x02,0x03,0x04,0x0C,0x0D). How to realize that?
Thanks a lot