8
 string fileName = "";

            string sourcePath = @"C:\vish";
            string targetPath = @"C:\SR";

            string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
            string destFile = System.IO.Path.Combine(targetPath, fileName);

            string pattern = @"23456780";
            var matches = Directory.GetFiles(@"c:\vish")
                .Where(path => Regex.Match(path, pattern).Success);

            foreach (string file in matches)
            {
                Console.WriteLine(file); 
                fileName = System.IO.Path.GetFileName(file);
                Console.WriteLine(fileName);
                destFile = System.IO.Path.Combine(targetPath, fileName);
                System.IO.File.Copy(file, destFile, true);

            }

我上面的程序适用于单一模式。

我正在使用上面的程序在具有匹配模式的目录中查找文件,但在我的情况下,我有多个模式,所以我需要将string pattern变量中的多个模式作为数组传递,但我不知道如何操作Regex.Match 中的那些模式。

谁能帮我?

4

4 回答 4

9

您可以在正则表达式中添加OR

string pattern = @"(23456780|otherpatt)";
于 2012-06-05T07:35:11.120 回答
4

改变

 .Where(path => Regex.Match(path, pattern).Success);

 .Where(path => patterns.Any(pattern => Regex.Match(path, pattern).Success));

其中模式是一个IEnumerable<string>,例如:

 string[] patterns = { "123", "456", "789" };

如果数组中有超过 15 个表达式,则可能需要增加缓存大小:

 Regex.CacheSize = Math.Max(Regex.CacheSize, patterns.Length);

有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.cachesize.aspx

于 2012-06-05T07:37:07.893 回答
2

Aleroot 的答案是最好的,但如果你想在代码中这样做,你也可以这样做:

   string[] patterns = new string[] { "23456780", "anotherpattern"};
        var matches = patterns.SelectMany(pat => Directory.GetFiles(@"c:\vish")
            .Where(path => Regex.Match(path, pat).Success));
于 2012-06-05T07:41:53.520 回答
1

例如,以最简单的形式

string pattern = @"(23456780|abc|\.doc$)";

这将匹配您选择的模式的文件或具有 abc 模式的文件或扩展名为 .doc 的文件

可在此处找到Regex 类可用模式的参考

于 2012-06-05T07:36:09.050 回答