Fungsi Nomor Format VBScript


Referensi VBScript Lengkap

Fungsi FormatNumber mengembalikan ekspresi yang diformat sebagai angka.

Sintaksis

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

Contoh

Contoh 1

<%

response.write(FormatNumber(20000))

%>

Output dari kode di atas akan menjadi:

20,000.00

Contoh 2

Mengatur jumlah desimal:

<%

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

%>

Output dari kode di atas akan menjadi:

20,000.00
20,000.00000

Contoh 3

Nilai pecahan dengan atau tanpa nol di depan:

<%

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

%>

Output dari kode di atas akan menjadi:

.20
0.20

Contoh 4

Nilai negatif di dalam tanda kurung atau tidak:

<%

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

%>

Output dari kode di atas akan menjadi:

-50.00
(50.00)

Contoh 5

Pengelompokan angka - atau tidak:

<%

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

%>

Output dari kode di atas akan menjadi:

1000000.00
1,000,000.00

Referensi VBScript Lengkap