0

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>
Abolfazl Mohajeri
  • 1,734
  • 2
  • 14
  • 26
AmirBll
  • 1,081
  • 1
  • 13
  • 25

1 Answers1

8

You can try this way:

<div class="value" th:text="${#numbers.formatDecimal(price, 0, 'COMMA', 0, 'POINT')}"></div>
Abolfazl Mohajeri
  • 1,734
  • 2
  • 14
  • 26