私は常に過負荷の問題に遭遇しています 私はそれを見ましたが、何も私のシナリオのように見えません... ここの人々が私を助けてくれると期待していました。 私のコードの例は次のとおりです。どのように文字列リスト内の単語を数えるのですか
string s = textbox.text;
char[] delimiter = {' '};
string[] word = s.split(delimiter); //this gets a set of words from s.split
for (int i = 0; i <= word.length; i++) //I also tried word.count()
{
int ii = 0;
int counter = wordlist.count;
bool test1 = false;
while (test1 == false || ii != counter +1)
{
if (word[i] == wordlist[ii]) //this is where it gets stuck. It wants to load more word[i] than what there are in the list...
{
//function gets preformed
test1 = true;
}
else
{
ii++;
}
}
}
はお時間をありがとうございました...私のスクリプトのこの部分は非常に重要である、私を助けてください!
この文脈では 'wordlist'とは何ですか? –
ああ、申し訳ありませんが、wordlistはあらかじめロードされた単語のセットです。コードは基本的に、あなたが入力した単語と、それが知っている単語を一致させる必要があります。 返信いただきありがとうございます! –
[C#で単語の数を数える]の可能な複製(https://stackoverflow.com/questions/8784517/counting-number-of-words-in-c-sharp) – gunr2171