[asp] 기본 함수

|

FormatCurrency

- 시스템 제어판에 정의된 통화 기호를 사용하여 서식화된 값을 반환

예) FormatCurrency(10000) = \100,000
예) FormatCurrency(10000,5) = \100,000.00000


FormatDateTime

- 날짜와 시간으로 서식화된 값을 반환

예) FormatDateTime(Now,0) = 2000-11-11 오후 11:11:11
예) FormatDateTime(Now,1) = 2000년 11월 11일  수요일
예) FormatDateTime(Now,2) = 2000-11-11
예) FormatDateTime(Now,3) = 오후 11:11:11
예) FormatDateTime(Now,4) = 11:11


FormatNumber

- 숫자로 서식화된 값을 반환

예) FormatNumber(10000) = 100,000.00
예) FormatNumber(10000,5) = 100,000.00000

FormatPercent

- 뒤에 %가 붙는 백분율로 서식화된 값을 반환

예) FormatPercent(0.7234) = 0.72
예) FormatPercent(0.7234,5) = 0.72340



Join

- 배열이 포함되어 있는 여러 하위 문자열을 결합하여 만든 문자열 반환

보기) MyLen(0) = "하'
        MyLen(1) = "대'
        MyLen(2) = "현'

예) Join(MyLen) = 하대현
예) Join(MyLen,"--") = 하--대--현


LCase

- 소문자 반환

예) LCase(Show Me The Money) = show me the money
예) LCase(abcDEFGhijk) = abcdefghijk


UCase

- 대문자 반환

예) LCase(Show Me The Money) = SHOW ME THE MONEY
예) LCase(abcDEFGhijk) = ABCDEFGHIJK

String

- 지정된 길이의 반복되는 문자열을 반환

예) String(10,"*") = **********
예) String(3,"A") = AAA


나머지도 업데이트 예정

'프로그래밍 > asp, php' 카테고리의 다른 글

[ASP] Err 객체  (0) 2010.05.27
ON ERROR RESUME NEXT  (0) 2009.09.22
[ASP] read/write configuration class (xml version)  (0) 2009.08.12
[ASP] asp로 xml 파일 저장  (0) 2009.08.12
Request.ServerVariables  (0) 2009.07.29
And