Creates a character string which represents the integer as an octal number. The character string is filled-up with leading 0 characters until the length of <length>. If the result is already larger than <length>, the result will not be affected. Is equivalent to asString(8, length).
| asOctalString(Integer length) | ||||
|---|---|---|---|---|
| Arguments | Integer | length | Length of the octal number | |
| Return value | String | |||
| Formula | Result |
|---|---|
| =12.asOctalString(5) | 00014 |
