こんにちは、txtbox から文字の出現回数を取得しようとしています。まだ答えが見つからない. 例: 私は文で与える. 「こんにちは!.」リストボックスには...
H - 2 回 e - 3 回 ....
これは私のコードです...
For i = 0 To txtSent.Text.Length - 1
If (Char.IsLetter(txtSent.Text(i))) Then
Dim str = Len(txtSent.Text) - Len(Replace(txtSen.Text, txtSen.Text(i), ""))
lstOutput.Items.Add(txtZin.Text(i) & " occurs " & str & " time(s)")
End If
Next´
しかし、「m」のすべての文字を繰り返すのではなく、「m - 5」にする必要があります
手伝って頂けますか?