Search found 4 matches
- 04 Aug 2018, 03:46
- Forum: Help and Support
- Topic: [CLI] How to process generic non-media files?
- Replies: 2
- Views: 1998
Re: [CLI] How to process generic non-media files?
Thanks this really helps out a lot.
- 03 Aug 2018, 01:50
- Forum: Help and Support
- Topic: [CLI] How to process generic non-media files?
- Replies: 2
- Views: 1998
[CLI] How to process generic non-media files?
So I’ve tried a couple times to understand how the AMC script works. I really don’t get it unfortunately. All I want to use filebot for is to automate renaming cbr/cbz (comic) files. So, I have a preset for DC comics that I download as a batch, I place them in one folder and run this preset: Y:/Co ...
- 27 Apr 2018, 08:26
- Forum: Help and Support
- Topic: Help removing everything inside () brackets
- Replies: 3
- Views: 6331
Re: Help removing everything inside () brackets
This regular expression will do the job: /\(.*\)/ fn.replaceAll(/\(.*\)/, '') :arrow: https://www.filebot.net/forums/viewtopic.php?f=3&t=2072 This is exactly what I was looking for, thank you. And I figured out that other piece of code I had, it completes what I ultimately use it for: ~comics path ...
- 25 Apr 2018, 04:46
- Forum: Help and Support
- Topic: Help removing everything inside () brackets
- Replies: 3
- Views: 6331
Help removing everything inside () brackets
Like the title says. I’m trying to remove everything inside the brackets only. Example: Hal Jordan & the Green Lantern Corps 001 (2016) (2 covers) (digital) (Minutemen-Slayer) All I want the file to say is: Hal Jordan & the Green Lantern Corps 001 Now, I had the right code as a preset, it worked g ...