gpt4 book ai didi

ruby-on-rails - 使用 Rails number_to_currency 在 标签中包围美分

转载 作者:数据小太阳 更新时间:2023-10-29 08:39:00 26 4
gpt4 key购买 nike

我怎样才能分离美分并将它们放在自己的元素中?我正在寻找的输出是这样的:

<sup>$</sup>20<sup>99</sup>

请注意,没有用于分隔小数单位的分隔符,它们包含在自己的 sup 中。标签。我知道如何获得 <sup>$</sup>20.99使用 format: '<sup>%u</sup>%n' 时,但这并没有给我一种隔离美分的方法。

有什么想法吗?

最佳答案

你将不得不用替换正则表达式或类似的东西来做。

20.99.number_to_currency.sub(/\^([^\d]+)(\d+)([^\d]+)(\d+)/,     
'\1<sup>\2</sup>\3<sup>\4</sup>')

关于ruby-on-rails - 使用 Rails number_to_currency 在 <sup> 标签中包围美分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16270816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com