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."; }
付费内容,请联系本人QQ:1002453261
本文来自博客园,作者:明志德道,转载请注明原文链接:https://www.cnblogs.com/for-easy-fast/p/16513945.html