Core Function Str2Hex
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> Str2Hex( <expression>, <flag> ) </pre> === Description === Convert a string to a hex string. === Parameters === ==== expression ==== The string to use. ==== flag ====...") |
m (1 revision) |
Revision as of 21:40, 11 August 2014
Str2Hex( <expression>, <flag> )
Contents |
Description
Convert a string to a hex string.
Parameters
expression
The string to use.
flag
Optional; If higher than 0 the conversion will be in UNICODE.
Return Value
Success: Returns encoded string.
Failure: Returns empty string.
Remarks
None.
Example
// ASCII $Hex = Str2Hex("Hello World"); println("Hex: '$Hex'"); $Str = Hex2Str($Hex); println("Str: '$Str'"); // Unicode $Hex = Str2Hex("Hello World", 1); println("Hex: '$Hex'"); $Str = Hex2Str($Hex, 1); println("Str: '$Str'");