All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kbods.utils.numbers.kt Maven / Gradle / Ivy

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)
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy