如何格式化 WinMerge 过滤器以忽略部分行

How to format a WinMerge fllter to ignore part of the line

我希望 WinMerge 比较全文但排除可变子字符串。

Orientation="West" PhysicalAddress="2395226" DefFieldFrmt="Uf4d0" UnitCustomText="sec"
Orientation="West" PhysicalAddress="2395230" DefFieldFrmt="Uf4d1" UnitCustomText="sec"

在上面的行中,我想忽略 PhysicalAddress="xxx" 并找到更改的 DefFieldFrmt="Uf4d1"

我试过添加过滤器:

PhysicalAddress=".*"

然而,这过滤了整行。

PhysicalAddress="xxx" 前后的实际文本会有所不同,因此我需要一个过滤器来表示:匹配前缀和匹配后缀但忽略目标变量子字符串。

请帮忙。

根据 the documentation,无法为此使用线路过滤器:

When a rule matches any part of the line, the entire difference is ignored. Therefore, you cannot filter just part of a line.

但是,由于 WinMerge 的源代码在 GitHub 上,因此可以将此功能请求添加到其 list of issues