2

I think the right regex, forgive my ignorance on this.

I got some ideas from this useful stack question and the winmerge filter help page

But I can't get it to work. Some help please, much appreciated.

f: *\.insv(.mp4)?$ ## *.insv and *.mp4 files
Craig Lambie
  • 2,888
  • 2
  • 14
  • 17

1 Answers1

2

To exclude both extensions in the same filter you can use:

f: .*(\.insv|\.mp4)$

Or you can use one line to exclude each extension:

f: .*\.insv$
f: .*\.mp4$
rtribaldos
  • 1,177
  • 14
  • 28