如何在 String.Format 下显示指数?
Posted
技术标签:
【中文标题】如何在 String.Format 下显示指数?【英文标题】:How to show exponents under String.Format? 【发布时间】:2018-08-11 20:11:25 【问题描述】:如何在 string.format 中显示 a 的 2 次方?
analysis = String.Format("\nFormula: a^2 + b^2 = c^2");
我想以与 html 页面上相同的方式显示,而不是 a^2。
<strong>Formula: a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup></strong>
【问题讨论】:
这不是 string.format 的工作方式.. How to display superscript text in C# Console application?的可能重复 我可以建议使用 c# 6 中引入的字符串插值,比 string.format 更容易使用:) 【参考方案1】:String.Format 不支持将字符转换为上标。您需要自己找到正确的字符并将 那些 传递给 String.Format。
See this answer for ways to do that.
【讨论】:
知道了。谢谢你的帮助。这里是代码分析 = String.Format("Formula: a" + "\xB2" + "+ b" + "\xB2" + " = c" + "\xB2");以上是关于如何在 String.Format 下显示指数?的主要内容,如果未能解决你的问题,请参考以下文章
使 String.format("%s", arg) 以不同于 "null" 的方式显示空值参数