Latest web development tutorials

VBScript Oct Function

VBScript Reference Complete VBScript Reference

Oct function returns a string representing the octal value of a specified number.

Note: If the parameter is not an integer, making it rounded to the nearest integer before the operation.

grammar

Oct(number)

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

如果数字是:

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

Examples

Examples

<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>

Examples of the above output:

3
5
11
12
13
14
620
713
714

try it"

VBScript Reference Complete VBScript Reference