VBScript CCur 函数

❮ 完整的 VBScript 参考

CCur 函数可把表达式转换为货币(Currency)类型。

表达式必须是数值。

语法

CCur(expression)
参数 描述
expression 必需的。任何合法的表达式。

实例

实例 1

<%

response.write(CCur(30) & "<br />")

%>

上述代码的输出为:

30
显示示例 »

实例 2

Note that CCur rounds off to 4 decimals:

<%

response.write(CCur(5.9555555555555) & "<br />")

%>

上述代码的输出为:

5.9556
显示示例 »

❮ 完整的 VBScript 参考