“Format Mata Uang Kotlin” Kode Jawaban

Format Mata Uang Kotlin

val numberFormat = NumberFormat.getCurrencyInstance()  
numberFormat.setMaximumFractionDigits(0);
val convert = numberFormat.format(1000000)
    
println(convert)

// result: $1,000,000
Apollo

Format Mata Uang Kotlin


val locale = Locale.getDefault()
val numberFormat = NumberFormat.getCurrencyInstance(locale)
println(numberFormat.currency)  // on my device in Italy prints: EUR
    
val symbol = numberFormat.currency?.symbol
println(symbol) // on my device in Italy prints: € 



var pound = Currency.getInstance("GBP");
val symbol = pound.symbol
println(symbol) // prints £
simone mapelli

Jawaban yang mirip dengan “Format Mata Uang Kotlin”

Pertanyaan yang mirip dengan “Format Mata Uang Kotlin”

Lebih banyak jawaban terkait untuk “Format Mata Uang Kotlin” di Kotlin

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya