“Kotlin -Währungsformat” Code-Antworten

Kotlin -Währungsformat

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

// result: $1,000,000
Apollo

Kotlin -Währungsformat


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

Ähnliche Antworten wie “Kotlin -Währungsformat”

Fragen ähnlich wie “Kotlin -Währungsformat”

Weitere verwandte Antworten zu “Kotlin -Währungsformat” auf Kotlin

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen