如何从jsp中的会话变量中删除前导零
我有一个会话变量 -${reData.totalCharge}
它可能具有类似于 000000033
的值。当我在 JSP 中显示该值时,我只需要显示 33
。你怎么做这个?它被定义为字符串,因为数据以字符形式存储在 DB2 数据库中。
i have a session variable -${reData.totalCharge}
it may have values like 000000033
. when I display the value in JSP I need only 33
to be displayed. how do you do this ? this is defined as string as the data is stored as charecter in DB2 database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Integer.parseInt(value)
可以工作。但在预处理代码中而不是在 JSP 中执行此操作。另外,
应该可以工作。但最终 - 尝试在数据库中修复这个问题。您不应该将整数存储为字符串。
Integer.parseInt(value)
would work. But do that in the preprocessing code, rather than in the JSP. Also,<fmt:formatNumber />
should work.But ultimately - try fixing this in the database. You shouldn't be storing integers as strings.