现在的位置: 首页 > 综合 > 正文

Element Picker (C#, Regular Expression)

2013年03月03日 ⁄ 综合 ⁄ 共 1035字 ⁄ 字号 评论关闭
The following code picks element from a text file according to the pattern specified.
It is first used in collecting source file names from a vc project file in order to list them in a common makefile.
  1. using System.IO;
  2. using System.Text;
  3. using System;
  4. using System.Text.RegularExpressions;
  5. namespace Picker
  6. {
  7.     public class Program
  8.     {
  9.         public static void Main(String[] args)
  10.         {
  11.             StreamReader sr = null;
  12.             String pattern = "";
  13.             if (args.Length >= 2)
  14.             {
  15.                 sr = new StreamReader(args[0]);
  16.                 pattern = args[1];
  17.             }
  18.             else
  19.             {
  20.                 Console.WriteLine("! Not enough arguments.");
  21.                 return;
  22.             }
  23.             String s = sr.ReadToEnd();
  24.             sr.Close();
  25.             MatchCollection matches = Regex.Matches(s, pattern);
  26.             foreach (Match match in matches)
  27.             {
  28.                 Console.WriteLine(match.ToString());
  29.             }
  30.             Console.WriteLine(": Searching finished with " + matches.Count + " matches.");
  31.         }
  32.     }
  33. }

抱歉!评论已关闭.