W3cubDocs

/Kotlin

toBigDecimal

inline fun String.toBigDecimal(): BigDecimal

Platform and version requirements: Kotlin 1.2, JVM

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

Exceptions

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

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

Platform and version requirements: Kotlin 1.2, JVM

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

Exceptions

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

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

Parameters

mathContext - specifies the precision and the rounding mode.

© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/to-big-decimal.html