int值的格式,改变它的显示方式

发布于 2024-11-16 13:33:12 字数 373 浏览 1 评论 0原文

我正在使用这行代码来显示末尾带有 int 值的字符串。

<legend><spring:message code="time.createMonth.legend" arguments="${year}"/></legend>

该代码正在运行,但它显示的整数类似于数字“2,011”而不是“2011”。

如何格式化它以便显示时不带逗号?

有没有一种简单的方法可以让我直接投掷石膏或其他东西?像这样吗?

"arguments="${(Sting)year}" or "arguments="${Sting.valueOf(year)}"    ?

I am using this line of code to dispaly a string with an int value at the end of it.

<legend><spring:message code="time.createMonth.legend" arguments="${year}"/></legend>

The code is working but it is displaying the int lik a number "2,011" instead of "2011".

How can I format it so as it is displayed without the comma?

is there an easy way that i can just throw a cast or somehting? Like so?

"arguments="${(Sting)year}" or "arguments="${Sting.valueOf(year)}"    ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还给你自由 2024-11-23 13:33:12

我认为最简单的是:

arguments="${'' + year}"

I think the easiest would be:

arguments="${'' + year}"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文