字符串格式 - 如何更改负号位置
我有一个像这样的 string.Format
:
string Test = string.Format("{0:#,0}", NegativeNumber);
如何更改负号位置(方向 -> 向左或向右)?
I have a string.Format
like this :
string Test = string.Format("{0:#,0}", NegativeNumber);
how can I change the negative sign position (Direction -> left or right)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法可能是对负数采用不同的格式
结果:
自定义数字格式化字符串
The easiest route might be to just have a different format for negative numbers
Results:
Custom Numeric Format Strings
这行得通吗:
Would this work: