fileB.txtの行に文字列を含むものを除いて、fileA.txtのすべての行を含むfileC.txtを作成するバッチを作成しようとしています。
擬似:
foreach(line L in fileA.txt)
excluded = false
foreach(string str in fileB.txt)
if L contains str
exclude = true
if !excluded
add L to fileC.txt
L!が含まれている場合
例えば
fileA.txt :(すべて)
this\here\is\a\line.wav
and\this\is\another.wav
i\am\a\chocolate.wav
peanut\butter\jelly\time.wav
fileB.txt :(除外されるもの)
another.wav
time.wav
fileC.txt :(望ましい結果)
this\here\is\a\line.wav
i\am\a\chocolate.wav
私はFINDSTRをいじくり回してきましたが、一緒にパズルを解くことができないようです。ヘルプやポインタをいただければ幸いです。
乾杯!/フレデ