コード例 #1
0
 public void Parse(String text, IAspStringsParserRequestor requestor)
 {
     foreach (var parser in parsers)
     {
         parser.Parse(text, requestor);
     }
 }
コード例 #2
0
 public void Parse(String text, IAspStringsParserRequestor requestor)
 {
     foreach (var parser in parsers)
     {
         parser.Parse(text, requestor);
     }
 }
コード例 #3
0
 public void Parse(String text, IAspStringsParserRequestor requestor)
 {
     foreach (Match match in regex.Matches(text))
     {
         if (match.Groups["text"].Success)
         {
             requestor.Report(match.Groups["text"].Value);
         }
     }
 }
コード例 #4
0
 public void Parse(String text, IAspStringsParserRequestor requestor)
 {
     foreach (Match match in regex.Matches(text))
     {
         if (match.Groups["text"].Success)
         {
             requestor.Report(match.Groups["text"].Value);
         }
     }
 }