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
- 
				Alan_37
- Posts: 193
- http://meble-kuchenne.info.pl
- Joined: Thu Dec 03, 2020 7:23 pm
- Has thanked: 55 times
- Been thanked: 27 times
- 
				kersing
- Valued Contributor
- Posts: 194
- Joined: Wed Dec 02, 2020 7:28 pm
- Has thanked: 81 times
- Been thanked: 64 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.
			
			
									
						 
