fmt:formatNumber 如何显示增量 (+/-)
我想使用 fmt:formatNumber
显示以下内容:
.8 => 80%
-.8 => -80%
1721 => 1,721
1721 => +1,721
-7876 => -7,876
更新:该格式非常适合百分比和分组,但在数字前面放置 +
时效果不佳,如下所示:
.8=> +80%
1721 => +1,721
我该怎么做?
I want to use fmt:formatNumber
to display the following:
.8 => 80%
-.8 => -80%
1721 => 1,721
1721 => +1,721
-7876 => -7,876
UPDATE: The format works perfectly for percent and grouping, but it doesn't work so well for putting a +
in front of a number, as in the following:
.8 => +80%
1721 => +1,721
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
%
模式“乘以 100 并显示为百分比”。我认为在你的情况下你需要这样的东西:更新:你也可以使用这个方法:
You can use the
%
pattern to "multiply by 100 and show as percentage". I think in your case you would need something like this:UPDATE: You can use this method as well: