org.kbods.utils.numbers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kbods-internals Show documentation
Show all versions of kbods-internals Show documentation
Internal commons and utils for KBODS
The newest version!
package org.kbods.utils
import java.text.DecimalFormat
internal val FMT_GROUPED = DecimalFormat("#,###")
fun Number.grouped(): String {
return FMT_GROUPED.format(this)
}