「VB.NET」文字列の左側に指定文字を埋め込む

2021年9月29日

構文
Public Function PadLeft (totalWidth As Integer, paddingChar As Char) As String
指定された文字数になるまで左側に指定された Unicode 文字を埋め込むことで、このインスタンス内の文字を右寄せした新しい文字列を返します。

使用例

Module Module1

    Sub Main()

        'String型変数の定義
        Dim str As String = "study"
        Dim pad As Char = "*"

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

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

        Console.ReadKey()
    End Sub


End Module

結果
**********study 長さ: 15
study 長さ: 5

VB.net

Posted by arkgame