How to convert float to string with 2 decimal places in Kotlin

1 Answer

0 votes
fun main() {
    val f = 787324.9761
    
	val s = "%.2f".format(f)
    
    println(s)
}



/*
run:

787324.98

*/

 



answered Feb 13, 2023 by avibootz
edited Feb 13, 2023 by avibootz

Related questions

...