I\'m trying to get a regex that will match:
somefile_1.txt somefile_2.txt somefile_{anything}.txt
but not match:
somefile_1
somefile_(?!16).*\.txt
(?!16) means: Assert that it is impossible to match the regex "16" starting at that position.