Format a number to always have a sign and decimal separator(将数字格式化为始终有符号和小数分隔符)
问题描述
I want to format any number (integer or real) to a string representation which always has a sign (positive or negative) and a decimal separator, but no trailing zeroes.
Some samples:
Is it possible with one of the default ToString()
implementations, or do I need write this myself?
Try something like this:
But this wouldn't help to display trailing decimal point. You can handle such situations using this method:
这篇关于将数字格式化为始终有符号和小数分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!