如何在 C# 中格式化 Int 时强制使用符号
我想格式化一个整数 i (-100 ),例如:
-99 格式为“-99”
9 种格式为“+09”
-1 格式为“-01”
0 格式为“+00”,
i.ToString("00")
但当 int 为正数时不添加 + 号。
有没有办法在不明确区分之间的情况下做到这一点
i >= 0
和 i
0?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
当用分号 (;) 分隔时,第一部分将适用于正值,第二部分将适用于负值,第三部分将适用于零 (0)。
请注意,如果您希望零的格式与正数相同,则可以省略第三部分。如果您希望负数的格式与正数相同,但希望零的格式不同,也可以省略第二部分。
参考: MSDN 自定义数字格式字符串:这 ”;”节分隔符
Try this:
When separated by a semicolon (;) the first section will apply to positive values, the second section will apply to negative values, the third section will apply to zero (0).
Note that the third section can be omitted if you want zero to be formatted the same way as positive numbers. The second section can also be omitted if you want negatives formatted the same as positives, but want a different format for zero.
Reference: MSDN Custom Numeric Format Strings: The ";" Section Separator
您也许可以使用这样的格式字符串来完成此操作..
这将产生以下输出..
请查看 自定义数字格式字符串的 MSDN 文档
You might be able to do it with a format string like so..
This would produce the following output..
Take a look at the MSDN documentation for Custom Numeric Format Strings
尝试这样的事情:
一些例子:
Try something like this:
Some examples: