cmach1
June 27, 2024, 8:06pm
1
I have a series of files that cycle end letters (A, B, C, D, ect.) and then start over again on the next set of files. I would like to be able to add brackets [ ] around the letters and also make the letters lower case. How can this be done?
What have you done so far?
And why didn't you do it when you applied this procedure?
I'm trying to insert an incremental letter on multiple files. For example:
A04a Bongo Sounds
A04b Bongo Sounds
I would like to put a capital A at the end of the first file, a capital B at the end of the second file and so on.
I'm using this string in filename - filename:
$char($add($num(%1,1),65))
But all it does is place an "A" at the end of each file. Is the string not accurate? I don't want the same letter repeated for every file. I want the letter to adjust incrementally.
Why do you not use this approach?
I want to insert a lowercase letter as the fourth character in a list of filenames. I thought I put the right string in, but it just gives me the same letter (in this case 'a') over and over again. I want the letter to increase by one for each file. So track 2 should have a 'b', track 3 a 'c', ect.
This is what I used: A1.$char($add($num(%1,1),97)) %2
The lowercase letter comes after A1.
The 97 indicates the lowercase 'a', but what am I not doing right to get that letter to increase for ea…
If you show us some real examples, this would help to make suggestions.