Ruby 语言学宝石
我尝试将数字转换为单词,但有一个问题:
>> (91.80).en.numwords
=> "ninety-one point eight"
我希望它是“九一点八十”。我使用语言学宝石。你知道它的一些解决方案吗(更喜欢语言学)。
I try to convert number to words but I have a problem:
>> (91.80).en.numwords
=> "ninety-one point eight"
I want it to be "ninety-one point eighty". I use Linguistics gem. Do you know some solution for it (prefer with Linguistics).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这有点骇人听闻,但它确实有效:
当您将 91.80 作为浮点数输入时,Ruby 会去掉尾随的零,因此它需要以字符串开头才能保留该信息。一个更好的例子可能是:
It's a bit hackish, but it works:
When you put 91.80 as a float, ruby gets rid of the trailing zero, so it needs to be a string to begin with to retain that information. A better example might have been:
如果您将 Linguistics gem 与 Ruby 1.9 一起使用,则需要修补 en.rb 的第 1060 行。
我们已将小补丁提交给作者。
If you use the Linguistics gem with Ruby 1.9 you'll need to patch line 1060 of en.rb
We submitted the small patch to the author.
我自己得到了答案。
结果:
不过,谢谢你们。你对 to_s 的想法对我很有帮助。
I got answer by myself.
And result:
Although, thank you guys. Your idea with to_s was helpful for me.