Currency format in dart

后端 未结 5 1986
一向
一向 2020-12-17 07:52

In C# I can do:

12341.4.ToString(\"##,#0.00\")

and the result is 12,345.40

What\'s the equivalent in dart?

5条回答
  •  猫巷女王i
    2020-12-17 08:19

    If you don't wanna print currency symbol:

    import 'package:intl/intl.dart';
    
    var noSimbolInUSFormat = new NumberFormat.currency(locale: "en_US",
          symbol: "");
    

提交回复
热议问题