ToBase62()
This takes in an number and attempts to convert it to Base62 for encoding
Usage
STRING = ToBase62(
number
)
Argument | Summary |
---|---|
number | number |
Calling
Supports named-parameter calling allowing you to use the function like:
ToBase62( number=? );
Supports passing parameters as a structure using ArgumentCollection:
ToBase62( ArgumentCollection={ number : ? } );