Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi HexToString (https://www.delphipraxis.net/86941-hextostring.html)

fapsons 21. Feb 2007 13:18


HexToString
 
Hallo Leute,
habe folgende Funktion, um einen String nach Hex umzuwandeln.
Ich scheiter allerdings dabei eine Funktion zu schreiben, die das Gegenteil bewirkt.
Könnt ihr mir helfen eine Funktion HexToString zu schreiben?
Wäre super!!!

Gruß,
fapsons


function StringToHex(s:string) : string;
var i : integer;
begin
result := '';
for i := 1 to length(s) do
begin
if i = length(s) then result := result + intToStr(ord(s[i]))
else
result := result + IntToStr(ord(s[i])) + '';
end;
end;

shmia 21. Feb 2007 13:20

Re: HexToString
 
Code-Library: http://www.delphipraxis.net/internal...ct.php?t=46356

fapsons 21. Feb 2007 13:45

Re: HexToString
 
Danke, funktioniert super!


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