반응형
[Kotlin] 코틀린 DecimalFormat / 천단위 콤마 넣기
val dec = DecimalFormat("#,###")
var test = 123456
dec.format(test)
// 123,456
소숫점 항상 표시
val dec = DecimalFormat("#,###.00")
var test = 123456
dec.format(test)
// 123,456.00
https://stackoverflow.com/questions/53848189/format-number-using-decimal-format-in-kotlin
반응형
댓글