C#使用正则表达式检查字符串中重复出现的词

2022/7/25 1:55:22

本文主要是介绍C#使用正则表达式检查字符串中重复出现的词,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 private void button1_Click(object sender, EventArgs e)
        {
            MatchCollection matches =//使用正则表达式查找重复出现单词的集合
                Regex.Matches(label1.Text,
                @"\b(?<word>\w+)\s+(\k<word>)\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
            if (matches.Count != 0)//如果集合中有内容
            {
                foreach (Match//遍历集合
                    match in matches)
                {
                    string word = match.Groups["word"].Value;//获取重复出现的单词
                    MessageBox.Show(word.ToString(), "英文单词");//弹出消息对话框
                }
            }
            else { MessageBox.Show("没有重复的单词"); }//弹出消息对话框
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            label1.Text =//创建字符串对象
                "The the quick brown fox  fox jumped over the lazy dog dog.";
        }

 



这篇关于C#使用正则表达式检查字符串中重复出现的词的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程