number Format
fun numberFormat(number: Expression, locale: Expression? = null, currency: Expression? = null, minFractionDigits: Expression? = null, maxFractionDigits: Expression? = null): Expression
Content copied to clipboard
fun numberFormat(value: Double, block: Expression.NumberFormatBuilder.() -> Unit): Expression
Content copied to clipboard
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, block: Expression.NumberFormatBuilder.() -> Unit): Expression
Content copied to clipboard
DSL function for "number-format".