Asc()

Returns the ascii value of the first character, or 0, if empty

Usage

NUMERIC = Asc( String )
Argument Summary
String String

Calling

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

Asc(
   String=?
);

Supports passing parameters as a structure using ArgumentCollection:

Asc( ArgumentCollection={
   String : ?
} );