chaîne kotlin pour flotter

val fstr1 = "123.45f"
val float1: Float? = fstr1.toFloat()
println(float1) 		// 123.45
VasteMonde