VBScript FormatPercent 함수


❮ 완전한 VBScript 참조

FormatPercent 함수는 뒤에 % 문자가 있는 백분율(100로 곱함) 형식의 표현식을 반환합니다.

통사론

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

실시예 1

'How many percent is 6 of 345?
response.write(FormatPercent(6/345))

Output:

1.74%

실시예 2

'How many percent is 6 of 345?
response.write(FormatPercent(6/345,1))

Output:

1.7%

❮ 완전한 VBScript 참조