如何使用助手number_to_currency
格式化我的电话号码,但不使用货币符号($,R $等)显示我的电话号码?
前任。:
$ 500,78 -> Not what i want
500,78 -> Format i desire
最佳答案
尝试将:unit
选项设置为空字符串来使用它。
number_to_currency(1234567890.50, :unit => "")
关于ruby-on-rails - Ruby on Rails number_to_currency在没有单位的情况下怎么办[无符号,$或其他],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14039679/