PR

C# 文字列の前方一致 StartsWithメソッド

string a = "abcde";
if (a.StartsWith("ab"))
{
   ...
}

後方一致は、EndsWithメソッド。

コメント