一个短语中的两个单词组。 C#

我怎么知道一个短语中有两个单词组有多少组?

这是我的代码

        var str = "word1 word2 word3 word4 word5";

        Console.WriteLine(str.CountGroupWords(2));
        Console.ReadKey();

结果应该是:2,因为word1和word2是一个组,word3和word4是另一个组,word5不是任何组的一部分

存在解决此问题的正则表达式模式?


使用正则表达式解决方案。

将仅匹配[a-zA-Z0-9_]并忽略任何多个空格

示例:

 string para= "word1    word2 word3 word4 word5"; // <= include multiple splaces
 Regex reg = new Regex(@"w+");

 Console.WriteLine((reg.Matches(para).Count) /2);  

输出:

2

其实你不需要Regex,你可以找到空格数并除以2:

 var result = str.Count(x => x == ' ') / 2;

如果它包含一个以上的空间 ,那么你可以尝试Split()方法重载这需要StringSplitOptions与价值第二个参数RemoveEptryEntries 。 那么返回值不包含包含空字符串的数组元素:

var result = str.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries).Length / 2;

使用下面的正则表达式,然后计算匹配的数量。

@"S+s+S+"

S+匹配s+匹配一个或多个空格字符的一个或多个非空格字符。

DEMO

String input = @"word1 word2 word3 word4 word5";
Regex rgx = new Regex(@"S+s+S+");
int NumberOfTrues = rgx.Matches(input).Count;
Console.WriteLine(NumberOfTrues);

IDEONE

链接地址: http://www.djcxy.com/p/51389.html

上一篇: Groups of two words in a phrase. C#

下一篇: DistinctBy when the property to distinct is a list