如何比较两个正则表达式匹配项
本文关键字:正则表达式 两个 何比较 比较 | 更新日期: 2023-09-27 18:35:21
我正在为电视剧制作软件,我想验证两个正则表达式匹配在foreach循环中具有相同的含义(例如。S03E01 == 03x01)。
这是我的代码:
Regex regex = new Regex(@"S?'d{1,2}[x|e]?'d{1,2}", RegexOptions.IgnoreCase);
foreach (string file in path) {
if (regex.IsMatch(file)) {
//something
}
}
我该怎么做?
将
文件名转换为一种格式,并将它们保存在集合中以匹配它们:
Dictionary<string, string> dict = new Dictionary<string,string>();
Regex regex = new Regex(@"S?('d{1,2})[x|e]?('d{1,2})", RegexOptions.IgnoreCase);
foreach (string file in path)
{
var match = regex.Match(file);
if (match.Success)
{
string key = "S" + match.Groups[1].Value.PadLeft(2, '0') + "E" + match.Groups[2].Value.PadLeft(2, '0');
if (dict.ContainsKey(key))
{
// .. already in there
}
else
{
dict[key] = file;
}
}
}