function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nehru komuNehru komu 

Hi I Want To seperate number by comma like this 2,20,000

Tuur Dutoit 13Tuur Dutoit 13
What exactly are you trying to do? Some more context would be helpful.
One thing you could try (in the controller) is:
List<String> parts = String.valueOf(myNumber).split(',');