W3cubDocs

/Kotlin

toBigDecimalOrNull

Platform and version requirements: JVM (1.2)
fun String.toBigDecimalOrNull(): BigDecimal?

Parses the string as a java.math.BigDecimal number and returns the result or null if the string is not a valid representation of a number.

Platform and version requirements: JVM (1.2)
fun String.toBigDecimalOrNull(
    mathContext: MathContext
): BigDecimal?

Parses the string as a java.math.BigDecimal number and returns the result or null if the string is not a valid representation of a number.

Parameters

mathContext - specifies the precision and the rounding mode.

Exceptions

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

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/to-big-decimal-or-null.html