gpt4 book ai didi

c# - 在 C# 中计算文本文件中的特定单词

转载 作者:太空宇宙 更新时间:2023-11-03 17:07:10 26 4
gpt4 key购买 nike

如果我有一个文本文件

“躲不过就别跑,要断成两根弦,你这个恶人”

我想计算文本文件中你这个词出现了多少次,并将该值放入一个 int 变量中。

我该如何着手做那样的事情?

最佳答案

用正则表达式来表达...

Console.WriteLine((new Regex(@"(?i)you")).Matches("dont run if you cant hide, or you will be broken in two strings, your a evil man").Count)

或者如果你需要你这个词是独立的

Console.WriteLine((new Regex(@"(?i)\byou\b")).Matches("dont run if you cant hide, or you will be broken in two strings, your a evil man").Count)

编辑:为了正确性,将\s+you\s+ 替换为 (?i)\byou\b

关于c# - 在 C# 中计算文本文件中的特定单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1427149/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com