Latest web development tutorials

VBScriptの10月の機能

VBScriptのリファレンス 完全なVBScriptのリファレンス

10月関数は、指定された数の8進数値を表す文字列を返します。

注:パラメータが整数でない場合、それは操作の前に最も近い整数に丸め作ります。

文法

Oct(number)

参数 描述
number 必需。任何有效的表达式。

如果数字是:

  • Null - 那么 Oct 函数返回 Null。
  • Empty - 那么 Oct 函数返回零(0)。
  • Any other number - 那么 Oct 函数返回 11 个八进制字符。

<script type="text/vbscript">

document.write(Oct(3) & "<br />")
document.write(Oct(5) & "<br />")
document.write(Oct(9) & "<br />")
document.write(Oct(10) & "<br />")
document.write(Oct(11) & "<br />")
document.write(Oct(12) & "<br />")
document.write(Oct(400) & "<br />")
document.write(Oct(459) & "<br />")
document.write(Oct(460) & "<br />")

</script>

上記の出力の例:

3
5
11
12
13
14
620
713
714

»をお試しください

VBScriptのリファレンス 完全なVBScriptのリファレンス