我有一个存储许多单词的字符串生成器..例如,我做了
StringBuilder builder = new StringBuilder();
builder.Append(reader.Value);
现在,构建器包含字符串
" india is a great great country and it has many states and territories".. it contains many paragraphs.
我希望每个单词都应该是唯一的表示和它的字数。例子,
india: 1
great: 2
country: 1
and: 2
此外,此结果应保存在 Excel 文件中。但我没有得到结果。
我在谷歌搜索,但我是通过 linq 或自己写单词来获取的。你能帮帮我吗?我是初学者。