Hi,
i'm using two simple scripts to rename my movies and series. Is it possible to automatically convert german umlauts like ä.ü,ö, in ae, ue, oe?
this what i use for movies:
/{n} ({y})/{n} ({y}){' CD'+pi}{'.'+lang}
and this for series:
{n} - {s00e00}
Thanks for your help!
automatically convert german umlauts?
Re: automatically convert german umlauts?
e.g.Format Expressions wrote:ascii()
Convert Unicode to ASCII. (e.g. "Österreich" -> "Osterreich" or "カタカナ" -> "katakana")
Code: Select all
{n.ascii()}
Re: automatically convert german umlauts?
thank you very much!