Search found 3 matches
- 03 May 2022, 05:04
- Forum: Episode / Movie Naming Scheme
- Topic: Using az sort with If then
- Replies: 4
- Views: 2959
Re: Using az sort with If then
Yeah, or that. That's much cleaner tbh. Thanks 
- 02 May 2022, 04:53
- Forum: Episode / Movie Naming Scheme
- Topic: Using az sort with If then
- Replies: 4
- Views: 2959
Re: Using az sort with If then
e.g.
{
switch(az) {
case 'A'..'E': return 'A-E'
case 'F'..'J': return 'F-J'
case 'K'..'O': return 'K-O'
case 'P'..'T': return 'P-T'
case 'U'..'Z': return 'U-Z'
case '0-9': return '0-9'
default: return '###'
}
}
:idea: Note that {az} will return "0-9" by default (and not just a single ...
- 29 Apr 2022, 12:31
- Forum: Episode / Movie Naming Scheme
- Topic: Using az sort with If then
- Replies: 4
- Views: 2959
Using az sort with If then
I've been playing around with the naming schemes for renaming my movies.
Came across the {az} which is handy for getting the first letter of the title but i'm trying to work out how can I encorporate if statements, to move the movies into folders, based off the file structure below.
Essentially ...
Came across the {az} which is handy for getting the first letter of the title but i'm trying to work out how can I encorporate if statements, to move the movies into folders, based off the file structure below.
Essentially ...