我有一个int字段,我想在jsf页面显示它的最后4个数字,请告知如何实现这一点。
答案 0 :(得分:3)
您可以使用modulo operation,使用模数运算符%
supported EL。{/ p>
<p>Last 4 numbers: #{bean.number % 10000}</p>
答案 1 :(得分:2)
如果您需要数字的后四位数,请使用模数运算符:
int someInteger = 23421984;
int last4digits = someInteger % 10000;
// last4digits = 1948;