数字(货币)成英文单词

时间:2012-05-29 00:24:23

标签: ruby-on-rails ruby-on-rails-3.1

我有一个生成发票的应用程序。该系统使用三种货币:英镑,美元和欧元。作为要求的一部分,发票必须以英文单词显示总金额。

例如:
100.50英镑 - 一百英镑和五十美分 100.50美元 - 一百美元五十美分 100.50欧元 - 100欧元和50美分。

我从2010年发现this帖子,但它并没有真正解决我的问题。 我想知道将数字转换成包括货币在内的单词的最佳方法是什么 我试图找到一个宝石来帮助我解决这个问题,但我可以找到...
任何建议都是非常受欢迎的。

2 个答案:

答案 0 :(得分:2)

您链接的帖子提到了linguistics.gem - 因为它可以为您转换数字,您需要做的就是拆分主要和次要单位(即美元和美分/磅和便士),处理每个,然后重新组合成为主要和次要单位名称的字符串,即

majorUnit.en.numwords dollars [and minorUnit.en.numwords cents]
...
puts 100.en.numwords + " dollars and " + 50.en.numwords + " cents"
# => 100 dollars and fifty cents

linguistics.gem的奖励是当你只有一个主要/次要单位时它也可以为你处理单数/复数,例如:

"penny".en.plural
# => "pence"

答案 1 :(得分:0)

def self.subhundred number
  ones = %w{zero one two three four five six seven eight nine
        ten eleven twelve thirteen fourteen fifteen
        sixteen seventeen eighteen nineteen}
  tens = %w{zero ten twenty thirty fourty fifty sixty seventy eighty ninety}

  subhundred = number % 100
  return [ones[subhundred]] if subhundred < 20
  return [tens[subhundred / 10], ones[subhundred % 10]]
end

def self.subthousand number
      hundreds = (number % 1000) / 100
      tens = number % 100
      s = []
      s = subhundred(hundreds) + ["hundred"] unless hundreds == 0
      s = s + ["and"] if hundreds == 0 or tens == 0
      s = s + [subhundred(tens)] unless tens == 0
      s
end

def self.decimals number
          return [] unless number.to_s['.']
          number = number.to_s.split('.')[1]  
          puts "num ---#{number}"
          digits =  subhundred number.to_i if number.to_i > 0
          #digits.present? ? ["and"] + digits + ['cents'] : []
           digits.present? ? ["and"] +  ['cents']  + digits : []  
end
def self.words_from_numbers number
          steps = [""] + %w{thousand million billion trillion quadrillion quintillion sextillion}
          result = []
          n = number.to_i
          steps.each do |step|
            x = n % 1000
            unit = (step == "") ? [] : [step]
            result = subthousand(x) + unit  + result unless x == 0
            n = n / 1000
          end
          result = ["zero"] if result.empty?
          result = result + decimals(number)

          result.join(' ').gsub('zero','').strip
end

 OutPut :  

  puts words_from_numbers(440100) => " US DOLLARS FOUR HUNDRED  FOURTY  THOUSAND AND ONE HUNDRED ONLY"