Loose-Info.com
Last Update 2008/05/18
TOP
-
Perl
- 関数 - oct
8進数を10進数に変換します。
oct
式1
式1
8進数を表す文字列
(例)
print oct("40") . "\n"; $_ = "100";
# 引数省略時は$_の値を変換
print oct() . "\n";
実行結果
32 64
©
loose-info.com All Rights Reserved.