Flutter convert currency format

devel flutt

for example +100286020524,17 how to become Rp 100.286.020.524,17 and remove this sign + . how to implement in dart flutter

EDIT
this mycode I using indonesia: 1.0.1 packages

main() {
  rupiah(123456789); // Rp 123,456,789
}

I've tried like this:

replaceAll(new RegExp(r'[^\w\s]+'),'')

but not i hope output. how to remove symbol plus

huextrat

To easily format values according to a locale it is recommended to use intl.

A currency can be formatted like this for Indonesia:

double d = 100286020524.17;
final currencyFormatter = NumberFormat.currency(locale: 'ID');
print(currencyFormatter.format(d)); // IDR100.286.020.524,17

You can also use classic formatting:

double d = 100286020524.17;
final currencyFormatter = NumberFormat('#,##0.00', 'ID');
print(currencyFormatter.format(d)); // 100.286.020.524,17

In this second way you will have only the value formatted without the currency symbol.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Format currency in textfield in Swift on input

分類Dev

Format cost into local currency format SQL

分類Dev

Is it possible to format a Textbox for currency just in ASP NET?

分類Dev

How i format this @pipe currency with space in angular?

分類Dev

How to format bokeh xaxis ticks with currency

分類Dev

Formatting A Textbox's Expression to Currency Format in ReportViewer

分類Dev

Custom configuration for flutter format

分類Dev

format string for databinding, thousands separator and brackets without Currency sign

分類Dev

Date Format Convert

分類Dev

Date Format Convert

分類Dev

SQL DateTime Format Convert

分類Dev

convert date format in log

分類Dev

Convert time format in PHP

分類Dev

Convert GMT date format to only time format

分類Dev

Convert HTML data into Text format

分類Dev

ImageMagick convert format, crop and resize

分類Dev

String date format convert to date

分類Dev

Convert date format to string in Pandas

分類Dev

How to convert date into given format?

分類Dev

How to convert animation to video format?

分類Dev

Convert jpeg image to hex format

分類Dev

Convert string into an array with certain format

分類Dev

How to Convert This RGB format in Python

分類Dev

Excel text to convert date format

分類Dev

How to convert date format in JavaScript?

分類Dev

Flutter / Dart Convert Int to Enum

分類Dev

Flutter / Dart Convert Int to Enum

分類Dev

How to convert a Future in flutter to a Stream

分類Dev

How to convert String to TimeOfDay in flutter?