Einzelnen Beitrag anzeigen

Dax
(Gast)

n/a Beiträge
 
#4

Re: String wird nur Teilweise ausgelesen

  Alt 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;
  Mit Zitat antworten Zitat