i have a string like this :
"xxxxxxx File_6547845_Whateverishere_S_Md.Txt yyyyyyyyyyyyy File_14787547_Whateverishere_S.Txt zzzzzzzzzzzzz"
and i want to only match the String that start with "file_number_text" and ends with "_s.txt" NOT "_S_md.txt"
i tried "file_\d+?_.*?_s(?!_)\.txt"
but always match String begins with "File_6547845" contains "yyyyyy" and ends with "_s.Txt"