iCrypto_String2ASCII

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > Crypto >

iCrypto_String2ASCII

 

Description

 

Translates text string to corresponding string of decimal ASCII codes.

 

Syntax

 

decimalAsciiString = iCrypto_String2Ascii(textString)

 

Returns

 

String, decimal ASCII form of text original.

 

Parameters

 

Name

Type

Optional

Meaning

textString

String

No

Input text string

 

Remarks

 

Restrictions

 

See also

 

iCrypto_ASCII2String

 

Examples

 

Uses "Crypto"

 

' Displays "065066067", because 65 is code for A, 66 code for B, 67 code for C

MsgBox 0, iCrypto_String2Ascii("ABC")