使用正则表达式过滤C#中的值

时间:2013-03-07 15:19:55

标签: c#

我希望我的程序丢弃“appGUID”值为“wx”或“null”的所有行

如何使用正则表达式实现此目的。在此之后它应该返回“WX Edit Bug”的唯一值。我试过但看起来像我的代码中的一些错误。

我无法弄清楚它的正则表达式模式。请帮忙。

我的日志文件格式为:

  

INFO [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:null INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:null INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3419432服务器:   yukon.corp.adobe.com用户:预发布appGUID:fcdd2153-bbdf INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3419432服务器:   yukon.corp.adobe.com用户:预发布appGUID:fcdd2153-bbdf INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:wx INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:wx INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:null INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3494430服务器:   yukon.corp.adobe.com用户:xinche appGUID:null INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3419432服务器:   yukon.corp.adobe.com用户:预发布appGUID:fcdd2153-bbdf INFO   [com.adobe.watson.vo.BugServices] WX编辑错误:3419432服务器:   yukon.corp.adobe.com用户:预发布appGUID:fcdd2153-bbdf

我的代码在这里:

IEnumerable<string> textLines
                          = Directory.GetFiles(@"C:\Users\karansha\Desktop\Dummy\", "*.*")
                            .Select(filePath => File.ReadLines(filePath))
                            .SelectMany(line => line);
            string x = string.Join(",", textLines);
            Regex regex = new Regex(@"(.*)?(wx|null)\b");
            var newString = regex.Replace(x, String.Empty);
            string discard = string.Join(",", newString);
            List<string> users = new List<string>();
            Regex regex1 = new Regex(@"WX Edit Bug:\s*(?<value>.*?)\s+Server");
            MatchCollection matches1 = regex1.Matches(discard);
            foreach (Match match in matches1)
            {
                var Editbug = match.Groups["value"].Value;
                if (!users.Contains(Editbug)) users.Add(Editbug);
            }
            int WX_Edit = users.Count;

1 个答案:

答案 0 :(得分:1)

使用您提供的代码,并假设查询的第一部分有效,您可以尝试使用Where子句(未经测试)

IEnumerable<string> textLines
    = Directory.GetFiles(@"C:\Users\karansha\Desktop\Dummy\", "*.*")
               .Select(filePath => File.ReadLines(filePath))
               .SelectMany(line => line)
               .Where(line => line.Contains("appGUID: null") || line.Contains("appGUID: wx"))
               .ToList();