「VB.NET」EndsWithで文字列の終わりの真偽値を判定する

2021年9月21日

書式
Public Function EndsWith (value As String) As Boolean
この文字列インスタンスの末尾が、指定した文字列と一致するかどうかを判断します。
使用例

Module Module1

    Sub Main()

        '文字列型変数の宣言
        Dim src As String = "study skill in arkgame"
        Dim target As String = "arkgame"

        'funcAメソッドを呼び出す
        funcA(src, target)

        Console.ReadKey()

    End Sub

    'funcAメソッドの定義
    Sub funcA(ByVal Src As String, ByVal target As String)

        If Src.EndsWith("arkgame") Then
            Console.WriteLine("文字列が指定引数{0}で終わる", target)
        Else
            Console.WriteLine("文字列指定引数{0}で終わってない", target)
        End If
    End Sub

End Module

結果
文字列が指定引数arkgameで終わる

VB.net

Posted by arkgame