C# 文字列の前方一致 StartsWithメソッド C# 覚え書き 2024.06.21 string a = "abcde"; if (a.StartsWith("ab")) { ... } 後方一致は、EndsWithメソッド。
コメント