Beispiel #1
0
        private static void Test(PcreRegex regex, string str)
        {
            var match = regex.Match(str);

            while (match.Success)
            {
                //Console.WriteLine(match.Value);
                match = match.NextMatch();
            }
        }