首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >是否在VB脚本中将数字"5“写为”5“?

是否在VB脚本中将数字"5“写为”5“?
EN

Stack Overflow用户
提问于 2012-03-16 22:58:56
回答 2查看 2.5K关注 0票数 3

有没有可能在经典的asp中写出我用字母得到的输出整数?

例如,如果我的结果是5,我想输出"Five“

或者如果是20,我需要它来显示“20”

结果可能是无限的,所以为了查找目的而写一个数组是行不通的。

有没有解决这个问题的办法?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2012-03-17 01:00:10

几个月前,我从一篇MS KB文章中窃取了这一点,它确实起到了作用,可以对它的语法进行一些调整。

代码语言:javascript
复制
response.Write ConvertCurrencyToEnglish("213123")


Function ConvertCurrencyToEnglish (ByVal MyNumber)
   Dim Temp
   Dim Dollars, Cents
   Dim DecimalPlace, Count

   ReDim Place(9)

   Place(2) = " Thousand "
   Place(3) = " Million "
   Place(4) = " Billion "
   Place(5) = " Trillion "

   'Convert MyNumber to a string, trimming extra spaces.
   MyNumber = Trim(CStr(MyNumber))

   'Find decimal place.
   DecimalPlace = InStr(MyNumber, ".")

   'If we find decimal place...
   If DecimalPlace > 0 Then
      'Convert cents
      Temp = Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)
      Cents = ConvertTens(Temp)
      'Strip off cents from remainder to convert.
      MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
   End If

   Count = 1

   Do While MyNumber <> ""
      'Convert last 3 digits of MyNumber to English dollars.
      Temp = ConvertHundreds(Right(MyNumber, 3))
      If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars
      If Len(MyNumber) > 3 Then
         'Remove last 3 converted digits from MyNumber.
         MyNumber = Left(MyNumber, Len(MyNumber) - 3)
      Else
         MyNumber = ""
      End If
      Count = Count + 1
   Loop

   'Clean up dollars.
   Select Case Dollars
      Case ""
         Dollars = "No Dollars"
      Case "One"
         Dollars = "One Dollar"
      Case Else
         Dollars = Dollars & " Dollars"
   End Select

   'Clean up cents.
   Select Case Cents
      Case ""
         Cents = " And No Cents"
      Case "One"
         Cents = " And One Cent"
      Case Else
         Cents = " And " & Cents & " Cents"
   End Select

   'ConvertCurrencyToEnglish = Dollars & Cents
   ConvertCurrencyToEnglish = Dollars & Cents
End Function

Private Function ConvertHundreds (ByVal MyNumber)
   Dim Result

   'Exit if there is nothing to convert.
   If CInt(MyNumber) = 0 Then Exit Function

   'Append leading zeros to number.
   MyNumber = Right("000" & MyNumber, 3)

   'Do we have a hundreds place digit to convert?
   If Left(MyNumber, 1) <> "0" Then
      Result = ConvertDigit(Left(MyNumber, 1)) & " Hundred "
   End If

   'Do we have a tens place digit to convert?
   If Mid(MyNumber, 2, 1) <> "0" Then
      Result = Result & ConvertTens(Mid(MyNumber, 2))
   Else
      'If not, then convert the ones place digit.
      Result = Result & ConvertDigit(Mid(MyNumber, 3))
   End If

   ConvertHundreds = Trim(Result)
End Function

Private Function ConvertTens (ByVal MyTens)
   Dim Result

   'Is value between 10 and 19?
   If CInt(Left(MyTens, 1)) = 1 Then
      Select Case CInt(MyTens)
         Case 10: Result = "Ten"
         Case 11: Result = "Eleven"
         Case 12: Result = "Twelve"
         Case 13: Result = "Thirteen"
         Case 14: Result = "Fourteen"
         Case 15: Result = "Fifteen"
         Case 16: Result = "Sixteen"
         Case 17: Result = "Seventeen"
         Case 18: Result = "Eighteen"
         Case 19: Result = "Nineteen"
         Case Else
      End Select
   Else
      '... otherwise it's between 20 and 99.
      Select Case CInt(Left(MyTens, 1))
         Case 2: Result = "Twenty "
         Case 3: Result = "Thirty "
         Case 4: Result = "Forty "
         Case 5: Result = "Fifty "
         Case 6: Result = "Sixty "
         Case 7: Result = "Seventy "
         Case 8: Result = "Eighty "
         Case 9: Result = "Ninety "
         Case Else
      End Select
      'Convert ones place digit.
      Result = Result & ConvertDigit(Right(MyTens, 1))
   End If

   ConvertTens = Result
End Function

Private Function ConvertDigit (ByVal MyDigit)
   Select Case CInt(MyDigit)
      Case 1: ConvertDigit = "One"
      Case 2: ConvertDigit = "Two"
      Case 3: ConvertDigit = "Three"
      Case 4: ConvertDigit = "Four"
      Case 5: ConvertDigit = "Five"
      Case 6: ConvertDigit = "Six"
      Case 7: ConvertDigit = "Seven"
      Case 8: ConvertDigit = "Eight"
      Case 9: ConvertDigit = "Nine"
      Case Else: ConvertDigit = ""
   End Select
End Function
票数 6
EN

Stack Overflow用户

发布于 2020-04-23 01:41:40

我在使用VBScript的遗留系统上工作,需要将数字转换为单词。我使用了Heavencore发布的代码(参见投票最多的答案);但是我需要用西班牙语,所以我做了一些调整。值得注意的是,大多数说西班牙语的国家都使用长比例命名系统(参见powers of ten scales)

代码语言:javascript
复制
function ConvertAmountToSpanish (MyNumber)
  Dim Temp
  Dim Dollars, Cents
  Dim DecimalPlace, Count
    

  'Convert MyNumber to a string, trimming extra spaces.
  MyNumber = Trim(CStr(MyNumber))
  
  'Find decimal place.
  DecimalPlace = InStr(MyNumber, ".")
  'If we find decimal place...
  If DecimalPlace > 0 Then
    'Convert cents
    Temp = Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2)
      Cents = ConvertTens(Temp)
      'Strip off cents from remainder to convert.
      MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
  End If

  Dollars = ConvertIntegerToSpanish(MyNumber)
  
  'Clean up dollars.
  Select Case Dollars
    Case ""
      Dollars = "Cero Pesos"
    Case "Un"
      Dollars = "Un Peso"
    Case Else
      Dollars = Dollars & " pesos"
    End Select

   'Clean up cents.
    Select Case Cents
      Case ""
        Cents = " con Cero Centavos"
      Case "One"
        Cents = " con un centavo"
      Case Else
        Cents = " con " & Cents & " centavos"
    End Select
  
  ConvertAmountToSpanish = Dollars & Cents
end function

Function ConvertIntegerToSpanish (MyNumber)
  Dim Temp
  Dim NumberText
  Dim Count

  ReDim Place(9)

  Place(2) = " Mil "
  Place(3) = " Millones "
  Place(4) = " Mil Millones "
  Place(5) = " Billones "
  Place(6) = " Mil Billones "

  'Convert MyNumber to a string, trimming extra spaces.
  MyNumber = Trim(CStr(MyNumber))

  Count = 1

  Do While MyNumber <> ""
      'Convert last 3 digits of MyNumber to English dollars.
      Temp = ConvertHundreds(Right(MyNumber, 3))
      If Temp <> "" Then
        If Temp = "Uno" Then
          If Count = 2 OR Count = 4 Then NumberText = LCase(Place(Count)) & NumberText
          If Count = 3 OR Count = 5 Then NumberText =  "Un" & LCase(Mid(Place(Count),1,Len(Place(Count))-3)) & " " & NumberText
        Else
          If Count > 1 AND Count < 7 Then
            NumberText = Temp & LCase(Place(Count)) & NumberText
          Else
            NumberText = Temp & Place(Count) & NumberText
          End If
        End If
      End If

      If Len(MyNumber) > 2 Then
        'Remove last 3 converted digits from MyNumber.
        MyNumber = Left(MyNumber, Len(MyNumber) - 3)
      Else
        MyNumber = ""
      End If
      Count = Count + 1
  Loop

  If Count > 3 Then
    NumberText = NumberText & " de"
  End If

  ConvertIntegerToSpanish = NumberText
End Function

Function ConvertHundreds (MyNumber)
  Dim Result
  Dim Tens
  'Exit if there is nothing to convert.
  If CInt(MyNumber) = 0 Then Exit Function

  'Append leading zeros to number.
  MyNumber = Right("000" & MyNumber, 3)

  'Do we have a hundreds place digit to convert?
  If Left(MyNumber, 1) <> "0" Then
      If Left(MyNumber, 1) = 1 Then
        If Mid(MyNumber, 2, 1) = "0" AND Mid(MyNumber, 3, 1) = "0" Then
          Result = "Cien"              
        Else
          Result = "Ciento "
        End If
      Else
        Select Case CInt(Left(MyNumber, 1))
          Case 5: Result = "Quinientos "
          Case 7: Result = "Setecientos "
          Case 9: Result = "Novecientos "
          Case Else: Result = ConvertDigit(Left(MyNumber, 1)) & "cientos "
        End Select
      End If
  End If

  'Do we have a tens place digit to convert?
  If Mid(MyNumber, 2, 1) <> "0" Then
    If Len(Result) > 0 Then
      Result = Result & " " & ConvertTens(Mid(MyNumber, 2))
    Else
      Result = ConvertTens(Mid(MyNumber,2))
    End If
  Else
      'If not, then convert the ones place digit.
      If Len(Result) > 0 Then
        Result = Result & ConvertDigit(Mid(MyNumber, 3))
      Else
        Result = ConvertDigit(Mid(MyNumber, 3))
      End If
  End If

  ConvertHundreds = Trim(Result)
End Function

Function ConvertTens (MyTens)
  Dim Result

  'Is value between 10 and 19?
  If CInt(Left(MyTens, 1)) = 1 Then
    Select Case CInt(MyTens)
      Case 10: Result = "Diez"
      Case 11: Result = "Once"
      Case 12: Result = "Doce"
      Case 13: Result = "Trece"
      Case 14: Result = "Catorce"
      Case 15: Result = "Quince"
      Case 16: Result = "Dieciseis"
      Case 17: Result = "Diecisiete"
      Case 18: Result = "Dieciocho"
      Case 19: Result = "Diecinueve"
      Case Else
    End Select
  Else
    '... otherwise it's between 20 and 99.
    IF CInt(Left(MyTens,1)) = 2 AND CInt(Right(MyTens,1)) > 0 Then
      Result = "Veinti" & LCase(ConvertDigit(Right(MyTens, 1)))
    Else
      If CInt(Left(MyTens, 1)) = 2 AND CInt(Right(MyTens, 1)) = 0 Then
        Result = "Veinte"
      Else
        Select Case CInt(Left(MyTens, 1))
          Case 3: Result = "Treinta"
          Case 4: Result = "Cuarenta"
          Case 5: Result = "Cincuenta"
          Case 6: Result = "Sesenta"
          Case 7: Result = "Setenta"
          Case 8: Result = "Ochenta"
          Case 9: Result = "Noventa"
          Case Else
        End Select
        'Convert ones place digit.
        If CInt(Right(MyTens,1)) > 0 Then
            If(Result = "") Then
                Result = ConvertDigit(Right(MyTens, 1))
            Else
                Result = Result & " y " & ConvertDigit(Right(MyTens, 1))
            End If
        End If
      End If
    End If
  End If

  ConvertTens = Result
End Function

Function ConvertDigit (MyDigit)
  Select Case CInt(MyDigit)
      Case 1: ConvertDigit = "Uno"
      Case 2: ConvertDigit = "Dos"
      Case 3: ConvertDigit = "Tres"
      Case 4: ConvertDigit = "Cuatro"
      Case 5: ConvertDigit = "Cinco"
      Case 6: ConvertDigit = "Seis"
      Case 7: ConvertDigit = "Siete"
      Case 8: ConvertDigit = "Ocho"
      Case 9: ConvertDigit = "Nueve"
      Case Else: ConvertDigit = ""
  End Select        
End Function
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9739621

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档