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 203 views
2 answers 222 views
3 answers 209 views
209 views asked Oct 10, 2022 by avibootz
1 answer 167 views
167 views asked Oct 8, 2022 by avibootz
1 answer 158 views
1 answer 159 views
1 answer 133 views
133 views asked Oct 8, 2022 by avibootz
...