Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
520 views
in Technique[技术] by (71.8m points)

java - Print float with two decimals unless number is a mathematical integer

Is there a simple way of printing a floating value as a string with decimals if the value has decimals, other wise print it like an int without decimals?

12.5 would print 12.50
15.0 would print 15

Is there a simple way to do this? I can think of ways which includes parse floats to strings to ints but it doesn't seem optimal.

EDIT: This answer does not do what I want: Show decimal of a double only when needed

This answers only shows one decimal if the value only has one decimal. What I need is two decimals, or nothing.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use String.format(), and strip off the decimal if it's .00 with removeSuffix():

fun Double.toMyFormat(): String =
    String.format("%.2f", this).removeSuffix(".00")

fun main() {
    println(12.5.toMyFormat())
    println(15.0.toMyFormat())
}

Prints:

12.50
15

This also works with rounded numbers such as 12.999 etc.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...