如何使用thymeleaf格式化HTML中的数字字符串

时间:2015-01-26 08:33:26

标签: java html thymeleaf

如何使用thymeleaf将数字字符串格式化为4digit格式。 例如。 5 - > 0005

2 个答案:

答案 0 :(得分:8)

使用数字格式设置字符串格式。如下:th:text =“$ {#numbers.formatInteger(num,5)}”

答案 1 :(得分:0)

我正在使用百里香3.0.9,指的是Thymeleaf format。 您可以通过两种方式进行操作,

 <p th:text="${#numbers.formatInteger(AccountNo,10)}"> This text will replace by AccountNo</p>

<p >Hi format [[${#numbers.formatInteger(AccountNo,10)}]] </p>

10是一个帐号的最大长度。

如果提供8位数字,则将添加两个前导零 。如果长度超过最大大小,则输出将保持不变,即与输入相同。

>

例如input: 12345678然后output: 0012345678