「VB.NET」PadRightで文字列の右側を空白埋めする

2021年9月29日

構文
Public Function PadRight (totalWidth As Integer) As String
指定された文字数になるまで右側に空白を埋め込むことで、この文字列内の文字を左寄せした新しい文字列を返します。

使用例

Module Module1

    Sub Main()

        'String型変数の定義
        Dim str As String = "studyk"
        Console.WriteLine(str + " 長さ: " + Len(str).ToString)

        '文字列の右側を空白埋める 桁数9
        Dim res As String = str.PadRight(9)
        Console.WriteLine(res + " 長さ: " + Len(res).ToString)

        '桁数4を指定 そのまま文字列を出力
        Dim res2 As String = str.PadRight(5)
        Console.WriteLine(res2 + " 長さ: " + Len(res2).ToString)

        Console.ReadKey()
    End Sub


End Module

結果

studyk 長さ: 6
studyk    長さ: 9
studyk 長さ: 6

 

VB.net

Posted by arkgame