gpt4 book ai didi

java - 在 Velocity 模板中格式化数字?

转载 作者:太空宇宙 更新时间:2023-11-04 14:30:29 39 4
gpt4 key购买 nike

我需要以以下格式显示金额:

1099 -> 1,099.00
100 -> 100.00
100.251 -> 100.25
10999 -> 10,999.00
1110999 -> 11,10,999.00

现在我使用以下代码来显示金额:

$numberTool.format("#0.00", $credit);

在本例中,如果金额为 1099,则显示 1099.00但我想以这种格式显示该金额:- 1,099.00

最佳答案

您缺少分组分隔符的处理:

$numberTool.format("###,##,###.00", $credit);

关于java - 在 Velocity 模板中格式化数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26229139/

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