Search code examples
spring-bootthymeleaf

How to separate number with commas in Thymeleaf


How to display Number with comma every 3 numbers in Thymeleaf?

For example, 12345678 I want to display this number as 12,345,678 . I got my data from Spring Boot

<div class="value" th:text="${price}"></div>

Solution

  • You can try this way:

    <div class="value" th:text="${#numbers.formatDecimal(price, 0, 'COMMA', 0, 'POINT')}"></div>