Page 1 of 1

automatically convert german umlauts?

Posted: 29 Mar 2016, 09:52
by stifman2k
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!

Re: automatically convert german umlauts?

Posted: 29 Mar 2016, 10:09
by rednoah
Format Expressions wrote:ascii()
Convert Unicode to ASCII. (e.g. "Österreich" -> "Osterreich" or "カタカナ" -> "katakana")
e.g.

Code: Select all

{n.ascii()}
@see http://www.filebot.net/naming.html

Re: automatically convert german umlauts?

Posted: 30 Mar 2016, 17:27
by stifman2k
thank you very much!