Page 299, bottom of the page: ^A.*(?=\.txt$) Should be: ^A(?=.*\.txt$).*$ Page 300, top of the page: ^A.*(?!\.txt$) That RE will match A*.txt file name anyway. Should be: ^A(?!.*\.txt$).*$