I have
target = "dexter.new.blood.S01EP07.somerandomstring.mkv"
I managed to get only the name using split('.')
to be
target = "dexternewblood"
and
list = ['Dexter - Eighth Season (2013)', 'Dexter - Seventh Season (2012)', 'Dexter - Fourth Season (2009)', 'Dexter - Third Season (2008)', 'Dexter - Sixth Season (2011)', 'Dexter - Fifth Season (2010)', 'Dexter: New Blood - First Season (2021)', 'Dexter - First Season (2006)', 'Dexter - Second Season (2007)']
I did the same thing to end up with:
list = ['Dexter ', 'Dexter ', 'Dexter ', 'Dexter ', 'Dexter ', 'Dexter ', 'Dexter: New Blood ', 'Dexter ', 'Dexter ']
I wanna get the best match which is "Dexter: New Blood" if you can add way for getting index as well