how to convert byte array to its hex representation in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T03:05:01Zhttp://stackoverflow.com/feeds/question/1060321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi0how to convert byte array to its hex representation in DelphiPavan2009-06-29T20:25:09Z2009-07-02T23:35:55Z
<p>Hi,</p>
<p>I have TBytes variable with a value [0,0,15,15]. How can I convert it to "00FF" ?</p>
<p>I dont want to use loops, bcoz this logic to be used in time intensive function.</p>
<p>(I tried using BinToHex, but I could not get it working with string variable.)</p>
<p>Thanks & Regards,</p>
<p>Pavan.</p>
http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1060333#10603332Answer by joe for how to convert byte array to its hex representation in Delphijoe2009-06-29T20:27:55Z2009-06-29T20:27:55Z<pre><code>function ByteToHex(InByte:byte):shortstring;
const Digits:array[0..15] of char='0123456789ABCDEF';
begin
result:=digits[InByte shr 4]+digits[InByte and $0F];
end;
Example :
MyHex := ByteTohex($FF);
the result
MyHex is "FF".
MyHex := ByteTohex(255);
the result
MyHex is "FF".
MyHex := ByteTohex($55);
the result
MyHex is "55".
</code></pre>
http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1060455#10604555Answer by Rob Kennedy for how to convert byte array to its hex representation in DelphiRob Kennedy2009-06-29T20:47:22Z2009-06-29T22:59:46Z<pre><code>// Swapping is necessary because x86 is little-endian.
function Swap32(value: Integer): Integer;
asm
bswap eax
end;
function FourBytesToHex(const bytes: TBytes): string;
var
IntBytes: PInteger;
FullResult: string;
begin
Assert(Length(bytes) = SizeOf(IntBytes^));
IntBytes := PInteger(bytes);
FullResult := IntToHex(Swap32(IntBytes^), 8);
Result := FullResult[2] + FullResult[4] + FullResult[6] + FullResult[8];
end;
</code></pre>
<p>If that last line looks a little strange, it's because you requested a four-byte array be turned into a four-character string, whereas in the general case, <em>eight</em> hexadecimal digits are required to represent a four-byte value. I'm simply assumed that your byte values are all below 16, so only one hexadecimal digit is needed. If your example was a typo, then simply replace the last two lines with this one:</p>
<pre><code>Result := IntToHex(Swap32(IntBytes^), 8);
</code></pre>
<p>By the way, your requirement forbidding loops will not be met. <code>IntToHex</code> uses a loop internally.</p>
http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1060640#10606402Answer by Wouter van Nifterick for how to convert byte array to its hex representation in DelphiWouter van Nifterick2009-06-29T21:21:41Z2009-06-29T23:35:05Z<p>This one is quite fast and works with any array size.. It's like BinToHex, but instead of expecting 0..255 byte values, it only uses the low nibble. </p>
<pre><code>procedure BinToSingleHex(Buffer, Text: PAnsiChar; BufSize: Integer);
const
Convert: array[0..15] of AnsiChar = '0123456789ABCDEF';
var
I: Integer;
begin
for I := 0 to BufSize - 1 do
begin
Text[0] := Convert[Byte(Buffer[I]) and $F];
Inc(Text);
end;
end;
</code></pre>
<p>Assembler that does the same:</p>
<pre><code>procedure BinToSingleHex(Buffer, Text: PAnsiChar; BufSize: Integer);assembler;
asm
PUSH ESI
PUSH EDI
MOV ESI,EAX
MOV EDI,EDX
MOV EDX,0
JMP @@1
@@0: DB '0123456789ABCDEF'
@@1: LODSB
AND DL,AL
AND DL,0FH
MOV AL,@@0.Byte[EDX]
STOSB
DEC ECX
JNE @@1
POP EDI
POP ESI
end;
</code></pre>
<p>usage:</p>
<pre><code>type THexDigit=0..15;
const ArSize=16;
var Ar:array[0..Pred(ArSize)] of THexDigit=(0,1,2,3,4,5,6,7,8,9,8,7,6,5,4,3);
S:Array[0..Pred(ArSize)] of AnsiChar;
BinToSingleHex(@Ar,S,Length(Ar));
WriteLn(S);
</code></pre>
http://stackoverflow.com/questions/1060321/how-to-convert-byte-array-to-its-hex-representation-in-delphi/1077214#10772140Answer by Despatcher for how to convert byte array to its hex representation in DelphiDespatcher2009-07-02T23:35:55Z2009-07-02T23:35:55Z<p>Bit late to the party but why not a simple lookup table? </p>
<pre><code>const
HexChars : Array[0..15] of Char = ('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
</code></pre>
<p>Assuming TBytes values of 0..15</p>
<pre><code>Function (ABytea: TBytes): string
begin
Result := HexChars[ABytea[0]];
Result := Result + HexChars[ABytea[1]];
Result := Result + HexChars[ABytea[2]];
Result := Result + HexChars[ABytea[3]];
end;
</code></pre>
<p>of course neater with a loop :) and needs modifying for byte values above 15:</p>
<pre><code>begin
Result := HexChars[ABytea[0] shr 4];
Result := Result + HexChars[ABytea[0] and $0F];
Result := Result + HexChars[ABytea[1] shr 4];
Result := Result + HexChars[ABytea[1] and $0F];
Result := Result + HexChars[ABytea[2] shr 4];
Result := Result + HexChars[ABytea[2] and $0F];
Result := Result + HexChars[ABytea[3] shr 4];
Result := Result + HexChars[ABytea[3] and $0F];
end;
</code></pre>
<p>Still neater with a loop especially if TBytes gets larger</p>