Hello ,
How do I convert an Array of hex Byte's to String Example :
HexArray = AA 1C 2D 5E 2F
I want the string to look like the following
String = AA,1C,2D,5E,2F
Anyone can help Please
Hex To String
-
- Posts: 173
- http://meble-kuchenne.info.pl
- Joined: Thu Dec 03, 2020 7:23 pm
- Has thanked: 52 times
- Been thanked: 25 times
-
- Valued Contributor
- Posts: 180
- Joined: Wed Dec 02, 2020 7:28 pm
- Has thanked: 73 times
- Been thanked: 63 times
Re: Hex To String
Create an empty sting of sufficient length, loop over the array and add the output of NumberToHex$ to the end with whatever needs to separate the hex numbers if there is another element in the array.