I use Beyond Compare (version 3.1.10) to compare different versions of Delphi Form Files, but I don\'t want to see differences concerning ExplicitTop, ExplicitLeft, Explicit
In my case (C#), I wanted to ignore the entire line which contained namespaces (and thus, using's) which I changed. (Referenced Walkthrough - Ignore entire line if text exist in line
ie.
namespace INSERT.NAMESPACE.HERE
changed to
namespace INSERT.NAMESPACE.HERE.NEW
To do that
In step 5. of Craig's solution, change the Text Matching to
" .\*INSERT.NAMESPACE.HERE.\* "
(include the quotes)
That's it.