iCrypto_ASCII2Bin
<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Crypto > iCrypto_ASCII2Bin |
Description
Translates string of hexadecimal ASCII codes to the corresponding text string.
Syntax
textString = iCrypto_ASCII2Bin(hexadecimalString)
Returns
String, text form of the hexadecimal ASCII original.
Parameters
Name |
Type |
Optional |
Meaning |
hexadecimalString |
String |
No |
String of hexadecimal ASCII codes. |
Remarks
Restrictions
See also
Examples
Uses "Crypto"
' Displays "ABC", because 41 is hexcode for A, 42 hexcode for B, 43 hexcode for C
MsgBox 0, iCrypto_ASCII2Bin("414243")