「VB.NET」Formatメソッドで指定値を指定書式で設定する
書式
Format(任意の値, 設定する書式)
文字列の 1 つ以上の書式項目を、指定されたオブジェクトの文字列表記に置換します。
Public Shared Function Format (format As String, arg0 As Object) As String
パラメーター
format 複合書式設定文字列
arg0 書式指定するオブジェクト
使用例
Module Module1 Public Sub Main() Dim strMsg As String strMsg = Format(4567.8, "##,##0.00") Console.WriteLine(strMsg) strMsg = Format(1234.6, "###0.00") Console.WriteLine(strMsg) strMsg = Format(4, "0.00%") Console.WriteLine(strMsg) Console.ReadKey() End Sub End Module
実行結果
4,567.80 1234.60 400.00%