반응형
1
2
3
|
fun Int.toDecimal(format : String = "#,###") : String {
return DecimalFormat(format).format(this)
}
|
cs |
사용방법
val money = 10000
print(money.toDeimal())
// 결과 : 10,000
코틀린 Extensions 으로 Int 변수에 toDecimal() 함수 붙여서 편하게 사용하세요
Int 변수를 넣고 String 으로 출력
반응형
'프로그래밍' 카테고리의 다른 글
[Kotlin] 안드로이드 Handler 무한반복 하기 (0) | 2022.10.25 |
---|---|
[Kotlin] 안드로이드 10 외부 저장소 앱 개별공간에서 공용 공간으로 파일복사 (0) | 2022.10.21 |
안드로이드 setSystemUiVisibility() Deprecated로 statusBarColor 글자색 못바꿀때 (0) | 2021.07.21 |
Firestore Could not deserialize object 오류 (0) | 2021.05.27 |