A
alexia
Hi All,
I have the following hex string "03828710073100A22300";
I want to convert it to byte array in the following way:
"03" to 3
"82" to 82
"87" to 87
"10" to 10
"07" to 07
the byte array should look like {3,82, 87.10. 7....};
Thank you for your help.
I have the following hex string "03828710073100A22300";
I want to convert it to byte array in the following way:
"03" to 3
"82" to 82
"87" to 87
"10" to 10
"07" to 07
the byte array should look like {3,82, 87.10. 7....};
Thank you for your help.