8.1.13 格式化字符串

  Format()方法能够格式化指定的字符串,即能够将指定的字符串中的每个格式项替换为相应对象的值的文本等效项。该方法存在5种重载形式,具体说明如下:

      public static string Format(string format,Object arg0)

      public static string Format(string format,params Object[] args)

      public static string Format(IFormatProvider provider,string format,params Object[] args)

      public static string Format(string format,Object arg0,Object arg1)

      public static string Format(string format,Object arg0,Object arg1,Object arg2)

  其中,format参数指定格式化项;arg0arg1arg2arg3参数表示被格式化的对象;args参数为被格式化对象所在的数组;provider参数提供区域性特定的格式设置信息。

下面的代码使用了Format()方法格式化String类的实例initValue,并在该实例之前添加了字符串“这是格式化后的字符串:”。其中,格式化后的字符串保存在变量newValue中。另外,FormatString()函数还使用了Response.Write()方法分别在网页上显示了源字符串和格式化后的字符串。最后,FormatString()函数返回格式化后的字符串变量newValue的值。

private string FormatString()

{

string initValue = "This is a string.";

Response.Write("源字符串:" + initValue + "<br />");

///执行插入操作

string newValue = string.Format("这是格式化后的字符串:{0}",initValue);

Response.Write("格式化后的字符串:" + newValue + "<br />");

return newValue;

}

8.1.13 格式化字符串_第1张图片

 

你可能感兴趣的:(8.1.13 格式化字符串)