Home > 要素の分割


.NETでの要素の分割数のカウント方法

Splitメソッドを使用した文字列の分割とカウント:string input = "This is a sample sentence."; string[] words = input.Split(' '); int count = words.Length; Console.WriteLine("分割された単語の数: " + count);>>More