private void button1_Click(object sender, EventArgs e)
{
int index = listBox.SelectedIndex;
string rts = (string)listBox1.Items[index];
int len = str.Length;
int count = 0;
int i = 0;
while(i < len)
{
if (str[i] == " ")
count++;
i++;
}
Label1.text = "Количество пробелов = " +
count.ToString();
}
string input = "Раз два три четыре пять, я иду искать";
string[] words = input.Split(new char[] { ' ', ',', '.', '-', '!', '?' }, StringSplitOptions.RemoveEmptyEntries);
foreach(var word in words) { Console.WriteLine($"{word}: длина {word.Length}"); }