numberFormat

Converts the input number into a string representation using the providing formatting rules. If set, the locale argument specifies the locale to use, as a BCP 47 language tag. If set, the currency argument specifies an ISO 4217 code to use for currency-style formatting. If set, the min-fraction-digits and max-fraction-digits arguments specify the minimum and maximum number of fractional digits to include.

fun numberFormat(number: Expression, locale: Expression?, currency: Expression?, minFractionDigits: Expression?, maxFractionDigits: Expression?): Expression
fun numberFormat(value: Double, block: Expression.NumberFormatBuilder.() -> Unit): Expression

DSL function for "number-format".

fun numberFormat(number: Expression, block: Expression.NumberFormatBuilder.() -> Unit): Expression