[classic asp] 숫자를 한글로 변환
Function IntToKrWord(value) Dim ReturnValue Dim i ReturnValue = "" If Isnumeric(value) = True Then If Instr(value,".") > 0 Then '소수점은 반올림 value = Int(Replace(Formatnumber(value,0),",","")) End If Dim arAmt arAmt = Array("일","이","삼","사","오","육","칠","팔","구","십") Dim arPos arPos = Array("","십","백","천") Dim arUnit arUnit = Array("","만","억","조","경") Dim Pos Pos = Len(value) Mod 4 Dim Unit Unit = Int(..