Charsetdecode()

Returns the binary object represented by the encoded string

Usage

BINARY = Charsetdecode( string, encoding )
Argument Summary
string string to decode
encoding encoding format

Calling

Supports named-parameter calling allowing you to use the function like:

Charsetdecode(
   string=?, 
   encoding=?
);

Supports passing parameters as a structure using ArgumentCollection:

Charsetdecode( ArgumentCollection={
   string : ?, 
   encoding : ?
} );