自定义数字格式字符串,始终显示符号自定义、字符串、符号、格式

由网友(今生丶青楼卖醉)分享简介:有没有什么办法可以指定一个标准或自定义数字格式字符串总是输出的符号,无论是+已经或-ve(尽管它应该做的零,我不知道!)Is there any way I can specify a standard or custom numeric format string to always output the sign...

有没有什么办法可以指定一个标准或自定义数字格式字符串总是输出的符号,无论是+已经或-ve(尽管它应该做的零,我不知道!)

Is there any way I can specify a standard or custom numeric format string to always output the sign, be it +ve or -ve (although what it should do for zero, I'm not sure!)

推荐答案

是的,你可以。 没有条件格式。请参见 MSDN中的条件格式

Yes, you can. There is conditional formatting. See Conditional formatting in MSDN

例如:

string MyString = number.ToString("+#;-#");

其中每个部分之间用分号重新presents正数和负数分离

Where each section separated by a semicolon represents positive and negative numbers

string MyString = number.ToString("+#;-#;0");

如果你不想在零到有一个加号。

if you don't want the zero to have a plus sign.

阅读全文

相关推荐

最新文章