Charat()

Returns the ascii character, as a string, of the position indicated

Usage

NUMERIC = Charat( string, position )
Argument Summary
string String
position position

Calling

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

Charat(
   string=?, 
   position=?
);

Supports passing parameters as a structure using ArgumentCollection:

Charat( ArgumentCollection={
   string : ?, 
   position : ?
} );