ViaThinkSoft CodeLib
Dieser Artikel befindet sich in der Kategorie:
CodeLib → Programmierhilfen → Delphi
function BinaryStringToHexDump(ABinaryString: string): string;
var
i: integer;
begin
for i := 1 to Length(ABinaryString) do
begin
result := result + IntToHex(Ord(ABinaryString[i]), 2);
if i <> Length(ABinaryString) then
result := result + ' ';
end;
end;
Daniel Marschall
ViaThinkSoft Mitbegründer
ViaThinkSoft Mitbegründer