Beyond Compare 4如果某行中出现某些文本,则忽略所有文件中的一行

时间:2016-04-26 14:24:02

标签: regex beyondcompare4

在Beyond Compare 4中,如果在此行中出现某些文本,如何将一条线忽略为所有文件中不重要的行?

E.g。

File1中:

I am master 
I live with family
Fear is common
I mean simple 1179

文件2:

I am MASTER 1179
I live alone
Fear is COMMON 1179
The 1179 be specific is a number

当我发现差异时,它应该只显示第2行和第2行。第4行:

> I live with family < I live alone
> I mean simple 1179 < The 1179 be specific is a number

注意:我尝试了语法.*1179.*,但我仍然看到差异中的所有行

1 个答案:

答案 0 :(得分:2)

不要使用语法。

点击Rules按钮,然后选择Importance标签并添加

^.*(common|master).*$ 

作为Regular expression

第1行和第3行将被标记为 notmportant ,如下所示:

enter image description here