bhupen
10 years agoAdvisor
Commas in Numbers Activity on Front Page
Hi
I want to show my API result in comma seprated:
I got the online user in community using following API.
<#assign users = rest("/users/online/count").value />
<h3 class="user_online">${users} Users Now Online</h3
Output for the above API: 8484638
Requiement: I need to display out in comma seprated:
For example: instead of displying 8484638, it should display as 8,484,638.
Guyz this is resolved just set up the locale and put ?eval with your string.
<#setting number_format=",##0">
<#setting locale="en_US">
<h3 class="conv_on">${posts?eval}hope this may help someone else.
Cheers!