如何在String.Format下显示指数?

时间:2018-08-11 20:11:26

标签: c# html asp.net

如何在string.format中显示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> 

1 个答案:

答案 0 :(得分:1)

String.Format不支持将字符转换为上标。您需要自己找到正确的字符,然后将那些传递给String.Format。

See this answer for ways to do that.