(Gast)
n/a Beiträge
|
Re: String wird nur Teilweise ausgelesen
23. Jan 2008, 01:59
Delphi-Quellcode:
function MoreStrToHex(s: string): string;
var i: integer;
begin
result := '';
for i := 1 to length(s) do
result := result + inttohex(chr(s[i]), 2);
end;
|
|
Zitat
|