C# Format() 方法用於將指定字符串中的一個或多個格式項替換為指定對象的字符串表示形式。
簽名
public static string Format (String first, Object second)
public static string Format(IFormatProvider, String, Object)
public static string Format(IFormatProvider, String, Object, Object)
public static string Format(IFormatProvider, String, Object, Object, Object)
public static string Format(IFormatProvider, String, Object[])
public static string Format(String, Object, Object)
public static string Format(String, Object, Object, Object)
public static string Format(String, params Object[])
參數
first:它是一個字符串類型的參數。
second:它是對象類型參數。
返回
它返回一個格式化的字符串。
C# 字符串 Format() 方法示例
using System;
public class StringExample
{
public static void Main(string[] args)
{
string s1 = string.Format("{0:D}", DateTime.Now);
Console.WriteLine(s1);
}
}
輸出:
Saturday, December 17, 2016
相關用法
- C# String ToLower()用法及代碼示例
- C# String ToString()用法及代碼示例
- C# String Contains()用法及代碼示例
- C# String ToCharArray()用法及代碼示例
- C# String IndexOf()用法及代碼示例
- C# String TrimEnd()用法及代碼示例
- C# String IsNormalized()用法及代碼示例
- C# String Concat()用法及代碼示例
- C# String GetTypeCode()用法及代碼示例
- C# String Equals()用法及代碼示例
- C# String Split()用法及代碼示例
- C# String SubString()用法及代碼示例
- C# String Normalize()用法及代碼示例
- C# String Compare()用法及代碼示例
- C# String LastIndexOfAny()用法及代碼示例
- C# String EndsWith()用法及代碼示例
- C# String Trim()用法及代碼示例
- C# String Copy()用法及代碼示例
- C# String Join()用法及代碼示例
- C# String PadLeft()用法及代碼示例
注:本文由純淨天空篩選整理自 C# String Format()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。