使用 StringFormat.SetTabStops() 是否可以对齐制表符?
我希望能够对齐在 StringFormat
中使用的制表位(使用 SetTabStops()
方法设置)
这可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我希望能够对齐在 StringFormat
中使用的制表位(使用 SetTabStops()
方法设置)
这可能吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
请参阅(更新:根据下面的评论没有多大帮助)
或者,正如我进一步评论并自己推荐的那样:)
在 String.Format 中,我不这么认为,因为它专门用于用不同的格式化程序替换 {n} 部分。您可以做的一件事是用 '\t' 分割字符串,然后对每个字符串应用 .PadLeft() 或 .PadRight() ,然后对它们应用 string.Join() ,或者使用上面的任何建议,但是, string.Format 可能是这个的死胡同。
See (Update: Didn't help much as per comments below)
Or, as I commented further and recommend by yourself :)
In String.Format I don't think so as all it specializes in is replacing {n} parts with different formatters. One thing you may be able to do is to split the string by '\t', and apply .PadLeft() or .PadRight() to each and then string.Join() them, or use any of the suggestions above, but, string.Format is likely dead end for this one.