划分并搜索特定单词
我有一个文本,我想将其分成相等的 4 部分,并搜索在该部分中重复的特定单词并向其显示
任何想法 正在使用 c# vs 2008 和 .txt 文件
i have a text i want to divide it into equal 4 part and search for specific words that repeat in those part and display them
any ideas
am working with c# vs 2008 and .txt files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,可以通过取 string.length /4 然后取子字符串来完成 4 个相等的部分。然后你可以在每个字符串中执行 .find 。
或者,您可以查看正则表达式。
well, 4 equal parts can be done by taking string.length /4 and then taking substrings. you could then do a .find within each string.
alternately, you could take a look a regular expressions.