![]() |
Array of Byte in String umwandeln
Wie der Titel schon sagt möchte ich gerne ein Array of Byte in einen String umwandeln, weiß jemand wie man das macht ?
|
Re: Array of Byte in String umwandeln
Mit einer Schleife, IntToStr und dem "+"-Operator der Strings. Statt IntToStr kannst du auch IntToHex verwenden, wenn die Bytes in Hex-Darstellung angezeigt werden sollen...
|
Re: Array of Byte in String umwandeln
Zitat:
ungetestet, aber grob sollte sowas hier klappen (Strings sind auch nur spezielle Arrays of Byte, nicht ganz, aber fast halt):
Delphi-Quellcode:
Gruß Der Unwissende
procedure doFoo(const a: Array of Byte; out s: String);
begin setLength(s, length(a)); if length(a) > 0 then begin move(a[0], s[1], length(a)); end; end; |
Re: Array of Byte in String umwandeln
Das wäre natürlich die andere Interpretationsmöglichkeit und sollte ohne Probleme funktionieren :)
|
Re: Array of Byte in String umwandeln
|
Re: Array of Byte in String umwandeln
Ciao amici.
Delphi-Quellcode:
Cari saluti
var
a: array of Byte; i: Integer; begin SetLength(a, 3); for i := Low(a) to High(a) do a[i] := 65 + i; s := String(a); end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz