VBScript Oct 函数
定义和用法
Oct 函数可返回表示指定数字八进制值的字符串。
注释:如果 number 参数不是整数,则在进行运算前将其四舍五入为最接近的整数。
语法
- Oct(number)
参数 | 描述 |
---|---|
number |
必需的。任何有效的表达式。
如果 number 是: Null - 那么 Oct 函数会返回 Null。 Empty - 那么 Oct 函数会返回零 (0)。 其他数 - 那么 Oct 函数会返回最多 11 个十六进制字符。 |
实例
- document.write(Oct(3))
- document.write(Oct(5))
- document.write(Oct(9))
- document.write(Oct(10))
- document.write(Oct(11))
- document.write(Oct(12))
- document.write(Oct(400))
- document.write(Oct(459))
- document.write(Oct(460))
分别输出:
- 3
- 5
- 11
- 12
- 13
- 14
- 620
- 713
- 714