正则表达式 – 如何检查文件名是否匹配通配符模式

前端之家收集整理的这篇文章主要介绍了正则表达式 – 如何检查文件名是否匹配通配符模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个通配符模式,也许是“* .txt”或“POS ??。dat”。

我还有内存中需要与该模式进行比较的文件名列表。

我应该如何做,请记住,我需要与IO.DirectoryInfo.GetFiles(pattern)使用完全相同的语义。

编辑:盲目地将其转换为正则表达式将无法正常工作。

我有一个完整的答案在你的代码为95%像FindFiles(字符串)。

在该功能MSDN文档的第二个注释中,不存在的5%是短名称/长名称行为。

如果您仍然希望获得该行为,则必须完成输入数组中每个字符串的短名称的计算,然后将长名称添加到匹配集合中,如果长名称或短名称匹配模式。

这里是代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace FindFilesRegEx
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] names = { "hello.t","HelLo.tx","HeLLo.txt","HeLLo.txtsjfhs","HeLLo.tx.sdj","hAlLo20984.txt" };
            string[] matches;
            matches = FindFilesEmulator("hello.tx",names);
            matches = FindFilesEmulator("H*o*.???",names);
            matches = FindFilesEmulator("hello.txt",names);
            matches = FindFilesEmulator("lskfjd30",names);
        }

        public string[] FindFilesEmulator(string pattern,string[] names)
        {
            List<string> matches = new List<string>();
            Regex regex = FindFilesPatternToRegex.Convert(pattern);
            foreach (string s in names)
            {
                if (regex.IsMatch(s))
                {
                    matches.Add(s);
                }
            }
            return matches.ToArray();
        }

        internal static class FindFilesPatternToRegex
        {
            private static Regex HasQuestionMarkRegEx   = new Regex(@"\?",RegexOptions.Compiled);
            private static Regex IllegalCharactersRegex  = new Regex("[" + @"\/:<>|" + "\"]",RegexOptions.Compiled);
            private static Regex CatchExtentionRegex    = new Regex(@"^\s*.+\.([^\.]+)\s*$",RegexOptions.Compiled);
            private static string NonDotCharacters      = @"[^.]*";
            public static Regex Convert(string pattern)
            {
                if (pattern == null)
                {
                    throw new ArgumentNullException();
                }
                pattern = pattern.Trim();
                if (pattern.Length == 0)
                {
                    throw new ArgumentException("Pattern is empty.");
                }
                if(IllegalCharactersRegex.IsMatch(pattern))
                {
                    throw new ArgumentException("Pattern contains illegal characters.");
                }
                bool hasExtension = CatchExtentionRegex.IsMatch(pattern);
                bool matchExact = false;
                if (HasQuestionMarkRegEx.IsMatch(pattern))
                {
                    matchExact = true;
                }
                else if(hasExtension)
                {
                    matchExact = CatchExtentionRegex.Match(pattern).Groups[1].Length != 3;
                }
                string regexString = Regex.Escape(pattern);
                regexString = "^" + Regex.Replace(regexString,@"\\\*",".*");
                regexString = Regex.Replace(regexString,@"\\\?",".");
                if(!matchExact && hasExtension)
                {
                    regexString += NonDotCharacters;
                }
                regexString += "$";
                Regex regex = new Regex(regexString,RegexOptions.Compiled | RegexOptions.IgnoreCase);
                return regex;
            }
        }
    }
}
原文链接:https://www.f2er.com/regex/357651.html

猜你在找的正则表达式相关文章