当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Oct 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript Oct 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 189 ::
收藏到网摘: n/a

The Oct function returns a string that represents the octal value of a specified number.
Oct 函数可返回表示数字八进制值的字符串

Note: If number is not already a whole number, it is rounded to the nearest whole number before being evaluated.
注意:如果 number 参数不是整数,则在进行运算前,将其四舍五入到最接近的整数。

语法

Oct(number)

参数 描述
number Required. Any valid expression
必选项。number 参数是任意有效的表达式

If number is:
如number为:

  • Null - 则Oct 函数返回 Null.
  • Empty - 则Oct 函数返回 零 (0).
  • 任意其它数字 - 则Oct 函数返回最大可到 11 位的八进制字符。

实例1

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))
输出:
3
5
11
12
13
14
620
713
714

评论 (0) All

登陆 | 还没注册?