Page 1 of 1

Rename files when each word is separated with an dot

Posted: 23 Jul 2016, 09:53
by toegelr
Hi FileBot Team!

I also would like to use FileBot for batch file renaming purposes for my TV Series. I'm using KODI for my home cinema setup and the usual way to describe episodes is as follows: Series.S0XE0X.Title

The thing is that the title words are not separated by a blank but with an dot like "Ray.Donovan.S01E01.Vater.unser". Each word is separated with an dot.

Does someone know how I get a dot between each word? :?: I'm very glad for your help. ;)

With best regards,
Roland

Re: Rename files when each word is separated with an dot

Posted: 23 Jul 2016, 11:21
by rednoah
Use the format. The examples show you how you can replace spaces with dots:
http://www.filebot.net/naming.html

Solution 1:

Code: Select all

{n.space('.')}.{s00e00}.{t.space('.')}
Solution 2:

Code: Select all

{allOf{n}{s00e00}{t}.join('.').space('.')}