Difference between revisions of "HexToStr"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function HexToStr(const Str: AnsiString): AnsiString; </source> ==Availability== SCAR Divi 3.31 > Current ==Description== Deco...") |
(No difference)
|
Revision as of 15:56, 9 February 2012
Definition
function HexToStr(const Str: AnsiString): AnsiString;
Availability
SCAR Divi 3.31 > Current
Description
Decodes a given string Str from hexadecimal format to a regular string. If the input string was not in hexadecimal format, the function returns an empty string.
Example
begin WriteLn(HexToStr('48656C6C6F20576F726C6421')); end.
Output:
Hello World!