使用 % 在 C# 中进行字符串格式化
使用 String.Fornt 通过 % 格式化字符串。
C# 中的 String.Format 格式控制还包括百分比 (%)。这会将值乘以 100 并追加百分号。
假设我们的值为 −
double val = .322;
现在,使用 String.Format 和格式 −
string.Format("string = {0:0.0%}", val);
以下是一个示例 −
示例
using System; public class Program { public static void Main() { double val = .322; string res = string.Format("string = {0:0.0%}", val); Console.WriteLine(res); } }
输出
string = 32.2%
广告