>>> ''.join(filter(str.isdigit, 'image101.jpg')) '101' >>> int(''.join(filter(str.isdigit, 'image101.jpg'))) 101