Perl Programming/Keywords/oct
< Perl Programming | Keywords
The oct keywordEdit
oct is a function that interprets EXPRESSION as a string with an octal value. If, however, the expression starts with "0b" or "0x", it interprets its value as binary or hexadecimal, respectively. A leading whitespace is always ignored.
Without the EXPRESSION, $_ is used as the source.
SyntaxEdit
oct EXPRESSION
oct