I've a long list of strings; they are basically filenames. The format is like:
["abcdedf_023.txt",
"foeoioo_011.txt",
"sdjskdsjd_3131.txt",
"dsdsdsrer_044.txt",
"rgfbfgrt_12.txt"]
and so on.
What I need is to filter out the names containing numbers greater than 15 at the end. So with the above input, the desired outout would be:
["abcdedf_023.txt",
"sdjskdsjd_3131.txt",
"dsdsdsrer_044.txt"]
This number (15) is not fixed and provided by user as input.