I would like to filter titles with the title ending in a number. Example: "Kiss Me Deadly" 108. I would like to replace the number "108" with nothing. Any help is appreciated! Sometimes there is only 2 digits...
You could try as filter
title MATCHES \d+$
To replace the trailing number try an action of the type "Replace with regular expression"
Search pattern: \s*\d+$
Replace with:
(leave empty)
Please note that this will be problematic for titles like
1984 by the Eurythmics
19 by Paul Hardcastle
24 by Lana del Rey
and probably a lot more.