zoukankan      html  css  js  c++  java
  • C# txt文档内容的事情

    Regex rgx = new Regex(@"http://www.XXXX.com/file/d{10}/");
     
    string path = @"H:", newTxt = @"H: ewTxt.txt";
     
                var query1 = from f in Directory.GetFiles(path)
                             let arr = File.ReadAllLines(f)
                             where f.EndsWith(".txt")
                             select new
                             {
                                 content = (from c in arr                                        
                                            where rgx.IsMatch(c)
                                            select c)
                             };
     
     
                query1.ToList().ForEach(item => File.AppendAllLines(newTxt, item.content));
     
                foreach (var str in File.ReadAllLines(newTxt))
                {
                    Console.WriteLine(str);
                }
  • 相关阅读:
    软件需求分析
    行高line-height 和vertical-align
    python中的集合基础知识
    python中字典常用的函数和用法
    python中字符串常用的函数
    day-75CRM
    day-74CRM
    day73CRM
    day-72Django源码解析
    day-71Django补充
  • 原文地址:https://www.cnblogs.com/tested/p/3359128.html
Copyright © 2011-2022 走看看