Given:
Code: Select all
05 - Die schöne Müllerin, Op. 25, D. 795_ 4. Danksagung an den Bach.mp3
Code: Select all
05 - 4. Danksagung an den Bach.mp3
There are 25 entries in this album
Should I be using the Rename mask or Search & Replace?
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
05 - Die schöne Müllerin, Op. 25, D. 795_ 4. Danksagung an den Bach.mp3
Code: Select all
05 - 4. Danksagung an den Bach.mp3
You still have to use the [N] and the [E] part first too.tcebob wrote:
Here's a screen shot. Did I miss something?
Your hunch about regular expression being able to provide a solution (or probably different variants of solutions) was not wrong, despite you not having experience with it.cybey wrote: 2020-11-04, 13:33 UTC I have two types of files in a folder. The first one starts with "apollo_" and the second one with "apollo_ED_". Somewhere in the file name I have the expression "Corr1" (without quotation marks), which I would like to replace with "Corr0". So the goal is to replace "Corr1" with "Corr0" for all files that start with "apollo_ED_".
Code: Select all
(apollo_ED_.*)Corr1
Code: Select all
$1Corr0
Code: Select all
[ ] ^ [ ] E [X] RegEx [ ] Subst
Yes, indeedOvg wrote: 2020-11-04, 14:21 UTC I think that
Search for (apollo_ED_.*)Corr1
and replace with $1Corr0 would be enough