How to add commas in thousands place for a number in Dart

1 Answer

0 votes
import 'package:intl/intl.dart';

void main() {
  var formatter = NumberFormat('#,###,000');
  
  var x = 77076193;
  print(formatter.format(x));
  
  print(formatter.format(17867));
  print(formatter.format(745));
  print(formatter.format(7938));
  print(formatter.format(8477610));

}




/*
run:

77,076,193
17,867
745
7,938
8,477,610

*/

 



answered Jun 24, 2023 by avibootz

Related questions

1 answer 99 views
2 answers 105 views
3 answers 109 views
109 views asked Oct 10, 2022 by avibootz
1 answer 72 views
72 views asked Oct 8, 2022 by avibootz
1 answer 73 views
...