2 つの stringlist を比較する必要があります。2 番目の stringlist 内の最初の stringlist の検索が、この問題を実行するための唯一のバージョンまたは推奨されるバージョンなのだろうか
私のコードは次のようになります
var
aFirstStrList: TStringList ;
aSecondStringList: TStringList;
MissingElement_firstElement_not_inside_second: TStringList;
MissingElement_SecondElement_not_inside_First: TStringList;
...
for i := 0 to aFirstStrList.Count - 1 do
begin
if aSecondStringList.IndexOf(aFirstStrList[i] < 0 ) then
begin
// react on not found elements
....
MissingElement_firstElement_not_inside_second.add(...);
end;
end;
// and now same code just opposite search direction ....
....