Wie finde ich mehrere Vorkommen mit Regex-Gruppen?
Warum führt der folgende Code zu:
s gab 1 Treffer für 'the'
und nicht
s gab 3 Treffer für 'the'
using System;
using System.Text.RegularExpressions;
namespace TestRegex82723223
{
class Program
{
static void Main(string[] args)
{
string text = "C# is the best language there is in the world.";
string search = "the";
Match match = Regex.Match(text, search);
Console.WriteLine("there was {0} matches for '{1}'", match.Groups.Count, match.Value);
Console.ReadLine();
}
}
}