toBigDecimal

Parses the string as a java.math.BigDecimal number and returns the result.

Since Kotlin

1.2

Throws

if the string is not a valid representation of a number.


inline fun String.toBigDecimal(mathContext: MathContext): BigDecimal(source)

Parses the string as a java.math.BigDecimal number and returns the result.

Since Kotlin

1.2

Parameters

mathContext

specifies the precision and the rounding mode.

Throws

if the string is not a valid representation of a number.

if the rounding is needed, but the rounding mode is java.math.RoundingMode.UNNECESSARY.