hey i have been hunting around for a way to remove everything from the tv show names such as ,.'- and so forth and then set all names to use a capital for the first letter plus put just like 1 or 2 in front of the episode name so for example 1 Title
but at the moment i am getting 1 Title's or 1 Title-Title so basically i just need to know how to remove ' and - from the title any help would be appreciated
renaming format assistance
Re: renaming format assistance
Plenty of examples here:
http://www.filebot.net/naming.html
Like this:
Remove trailing !?.
Remove any ,.'-
http://www.filebot.net/naming.html
Like this:
Code: Select all
{n.replaceTrailingBrackets()} - {s+'x'}{e.pad(2)} - {t.replaceAll(/[!?.]+$/).replaceAll(/[`´‘’ʻ]/, "'")
.lowerTrail().replacePart(', Part $1')}
Code: Select all
t.replaceAll(/[!?.]+$/)
Code: Select all
t.replaceAll(/[,.'-]/)