如何获取正则表达式匹配字符串的文件路径?

时间:2019-05-25 03:53:42

标签: c# regex streamreader fileinfo directoryinfo

我已经成功地将txt.files文件夹中的多个字符串与“ streamreader”进行正则表达式匹配,但是我还需要获取匹配的字符串的文件路径。 我如何获得匹配的字符串的文件路径?

static void abnormalitiescheck()
    {
        int count = 0;

        Regex regex = new Regex(@"(@@@@@)");
        DirectoryInfo di = new DirectoryInfo(txtpath);

        Console.WriteLine("No" + "\t" + "Name and location of file" + "\t" + "||" +"    " + "Abnormal Text Detected");
        Console.WriteLine("=" + "\t" + "=========================" + "\t" + "||" + "  " + "=======================");

        foreach (string files in Directory.GetFiles(txtpath, "*.txt"))
        {            
            using (StreamReader reader = new StreamReader(files))
            {
                string line;
                while ((line = reader.ReadLine()) != null)
                {                       
                    Match match = regex.Match(line);
                    if (match.Success)
                    {                                    
                            count++;
                            Console.WriteLine(count +   "\t\t\t\t\t" + match.Value + "\n");
                        }
                    }
                }
            }
        }

如果可能的话,我也希望输出字符串的文件路径。 例如

C:/..../email_4.txt 
C:/..../email_7.txt
C:/..../email_8.txt
C:/..../email_9.txt

2 个答案:

答案 0 :(得分:1)

由于您已经拥有DirectoryInfo,因此可以获得FullName属性。

您还有一个名为files的文件名。要获取文件的名称和位置,可以使用Path.Combine

您更新后的代码如下:

Console.WriteLine(count + "\t" + Path.Combine(di.FullName , Path.GetFileName(files)) + "\t" + match.Value + "\n");

答案 1 :(得分:0)

我猜测我们可能只想匹配一些.txt文件。如果是这种情况,让我们从一个简单的表达式开始,该表达式将收集从输入字符串开始到.txt的所有内容,然后将.txt添加为右边界:

^(.+?)(.txt)$

Demo

using System;
using System.Text.RegularExpressions;

public class Example
{
    public static void Main()
    {
        string pattern = @"^(.+?)(.txt)$";
        string input = @"C:/..../email_4.txt
C:/..../email_7.txt
C:/..../email_8.txt
C:/..../email_9.txt";
        RegexOptions options = RegexOptions.Multiline;

        foreach (Match m in Regex.Matches(input, pattern, options))
        {
            Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index);
        }
    }
}