Normal
This is what the noisefilter is for in advanced settings. You can use regular expression code to build a fairly fancy construction to remove things you do not want from a title. You can for example append the following to the default noise filter: |^.+?(\s\w+)$ And this would remove the 'last' word and prefixed space from the title. You didn't give enough information to make a robust expression that would work for all your titles, but on the one you provided it works.
This is what the noisefilter is for in advanced settings. You can use regular expression code to build a fairly fancy construction to remove things you do not want from a title.
You can for example append the following to the default noise filter: |^.+?(\s\w+)$
And this would remove the 'last' word and prefixed space from the title. You didn't give enough information to make a robust expression that would work for all your titles, but on the one you provided it works.