<完整的VBScript參考
的FormatCurrency函數返回格式化為使用在計算機的控制面板中定義的貨幣符號的貨幣值的表達式。
句法
FormatCurrency(Expression[,NumDigAfterDec[,
IncLeadingDig[,UseParForNegNum[,GroupDig]]]])
參數 | 描述 |
---|---|
expression | 需要。 表達要被格式化 |
NumDigAfterDec | 可選的。 指示如何顯示很多地方的小數點右邊。 默認值為-1(使用的是計算機的區域設置) |
IncLeadingDig | 可選的。 表示一個前導零是否被顯示小數值:
|
UseParForNegNum | 可選的。 指示是否以括號內放置負值:
|
GroupDig | 可選的。 指示數字是否被使用在計算機的區域設置指定的組分隔符分組:
|
例子
實施例2
設置小數點後的位數:
<%
response.write(FormatCurrency(20000,2) & "<br />")
response.write(FormatCurrency(20000,5))
%>
代碼的輸出將是:
$20,000.00
$20,000.00000
顯示示例» 實施例3
帶或不帶前導零的分數值:
<%
response.write(FormatCurrency(.20,,0) & "<br />")
response.write(FormatCurrency(.20,,-1))
%>
代碼的輸出將是:
$.20
$0.20
顯示示例» 實施例4
負值括號內或不:
<%
response.write(FormatCurrency(-50,,,0) & "<br />")
response.write(FormatCurrency(-50,,,-1))
%>
代碼的輸出將是:
-$50.00
($50.00)
顯示示例» 實施例5
分組一百萬美元 - 或者不是:
<%
response.write(FormatCurrency(1000000,,,,0) & "<br />")
response.write(FormatCurrency(1000000,,,,-1))
%>
代碼的輸出將是:
$1000000.00
$1,000,000.00
顯示示例» <完整的VBScript參考