Wie kann man zeigen, welche Sub-Regex nicht übereinstimmt?

Ich verwende reguläre Ausdrücke, um Benutzereingaben zu validieren. Der folgende Code sammelt Übereinstimmungen, auf die mit theMatch.Groups ["identifier"] zugegriffen werden kann. Wie kann ich eine Liste von Unterzeichenfolgen abrufen, die nicht in jeder Gruppe übereinstimmen?

#region Using directives

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;


namespace RegExGroup
{

   class Test
   {
      public static void Main( )
      {
         string string1 = "04:03:27 127.0.0.0 comcom.com";

         // group time = one or more digits or colons followed by space
         Regex theReg = new Regex( @"(?<time>(\d|\:)+)\s" +
         // ip address = one or more digits or dots followed by  space
         @"(?<ip>(\d|\.)+)\s" +
         // site = one or more characters
         @"(?<site>\S+)" );

         // get the collection of matches
         MatchCollection theMatches = theReg.Matches( string1 );

         // iterate through the collection
         foreach ( Match theMatch in theMatches )
         {
           if ( theMatch.Length != 0 )
           {
            Console.WriteLine( "\ntheMatch: {0}",
               theMatch.ToString( ) );
            Console.WriteLine( "time: {0}",
               theMatch.Groups["time"] );
            Console.WriteLine( "ip: {0}",
               theMatch.Groups["ip"] );
            Console.WriteLine( "site: {0}",
               theMatch.Groups["site"] );
           }
         }
      }
   }
}

Also, wenn der Benutzer 0xx: 03: 27 127.0.0.0? .com eingibt
Ich möchte ausgeben

 time:  0xx:03:27
 site:  ?.com

Auch hat jemand gute Referenzen für die Verwendung von Regexen in C #?
Vielen Dank für jede Hilfe.

Antworten auf die Frage(1)

Ihre Antwort auf die Frage