VBScript -FormatCurrency- Funktion


❮ Vollständige VBScript-Referenz

Die Funktion FormatCurrency gibt einen Ausdruck zurück, der als Währungswert formatiert ist, wobei das Währungssymbol verwendet wird, das in der Systemsteuerung des Computers definiert ist.

Syntax

FormatCurrency(Expression[,NumDigAfterDec[,
IncLeadingDig[,UseParForNegNum[,GroupDig]]]])

Parameter Description
expression Required. The expression to be formatted
NumDigAfterDec Optional. Indicates how many places to the right of the decimal are displayed. Default is -1 (the computer's regional settings are used)
IncLeadingDig Optional. Indicates whether or not a leading zero is displayed for fractional values:
  • -2 = TristateUseDefault - Use the computer's regional settings
  • -1 = TristateTrue - True
  • 0 = TristateFalse - False
UseParForNegNum Optional. Indicates whether or not to place negative values within parentheses:
  • -2 = TristateUseDefault - Use the computer's regional settings
  • -1 = TristateTrue - True
  • 0 = TristateFalse - False
GroupDig Optional. Indicates whether or not numbers are grouped using the group delimiter specified in the computer's regional settings:
  • -2 = TristateUseDefault - Use the computer's regional settings
  • -1 = TristateTrue - True
  • 0 = TristateFalse - False

Beispiele

Beispiel 1

<%

response.write(FormatCurrency(20000))

%>

Die Ausgabe des obigen Codes lautet:

$20,000.00

Beispiel 2

Anzahl der Dezimalstellen einstellen:

<%

response.write(FormatCurrency(20000,2) & "<br />")
response.write(FormatCurrency(20000,5))

%>

Die Ausgabe des obigen Codes lautet:

$20,000.00
$20,000.00000

Beispiel 3

Bruchwerte mit oder ohne führende Null:

<%

response.write(FormatCurrency(.20,,0) & "<br />")
response.write(FormatCurrency(.20,,-1))

%>

Die Ausgabe des obigen Codes lautet:

$.20
$0.20

Beispiel 4

Negative Werte in Klammern oder nicht:

<%

response.write(FormatCurrency(-50,,,0) & "<br />")
response.write(FormatCurrency(-50,,,-1))

%>

Die Ausgabe des obigen Codes lautet:

-$50.00
($50.00)

Beispiel 5

Gruppieren einer Million Dollar - oder nicht:

<%

response.write(FormatCurrency(1000000,,,,0) & "<br />")
response.write(FormatCurrency(1000000,,,,-1))

%>

Die Ausgabe des obigen Codes lautet:

$1000000.00
$1,000,000.00

❮ Vollständige VBScript-Referenz