Problem with sortName

All your suggestions, requests and ideas for future development
Post Reply
User avatar
rednoah
The Source
Posts: 23924
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Problem with sortName

Post by rednoah »

Xiphan wrote: 03 Mar 2022, 19:00 Is there anyway to create a custom regex that can correctly swap The or A to the end, but putting it before the year if a year already exists in the default title? :?:
Please read [SNIPPET] Sort Name on how to do just that. Though you'll have to come up with the regex pattern yourself.


:arrow: I'd just do n.sortName() and then leave it at that. Drop the "The" and make life easy.


:arrow: If you must have Movie, The (2021) naming though (BAD IDEA; WILL BREAK MATCHING IN THE FUTURE) then I'd do it like this:

Code: Select all

{ ny.before(/[(]\d{4}[)]/).sortName('$2, $1') } ({ y })
:idea: Please read the FAQ and How to Request Help.
Post Reply