划分并搜索特定单词

发布于 2024-08-26 22:49:23 字数 89 浏览 5 评论 0原文

我有一个文本,我想将其分成相等的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2024-09-02 22:49:24

好吧,可以通过取 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文