![]() |
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; |
Re: HexToString
Code-Library:
![]() |
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