-2

I need a way, in a Mirth file reader channel, to pick up all files but one with a given name. I can use a regex expression in the Filename Filter Pattern box.

Most files are of the format #######.brf. I need to pick up any file that isn't named 0050450.brf. Can someone help with this?

Thanks Rut

rut
  • 73
  • 5

1 Answers1

1

I think this one should work: ^(?!(0050450\.brf))\w*\.brf

Tobias
  • 111
  • 5
  • 1
    Please include an explanation of your code. I realize it's a short and simple solution, but code-only answers are still frowned upon in any case. – mypetlion Feb 06 '19 at 00:14