Xbasic
*TO_OCTAL Function
Syntax
Value as C = *TO_OCTAL(B data)
Arguments
- data
An integer value to be converted to octal format.
Description
Convert binary data to octal data.
Discussion
The *TO_OCTAL() function converts a number to an octal string.
Example
? *to_octal(123) = "0000000173"
See Also