Hello,
Here is my last question about case...
I could do everything I wanted exept that.
I want that in one action, all my fields have the good case.
the problem come if I have a word in uppercase. I want it to stay like it is already.
Here is an exemple.
I have : aaaa BBB ccc.mp3
I want : Aaaa BBB Ccc.mp3
I already have an action to change the Aaa & the Ccc but it will also change the Bbb like that.
So I thaught about something like that but I can't find the way to make it work :
Regular expression : (.?)\s(word and numbers with only uppercase)\s(.?)
Replace with : $caps($1) $upper($2) $caps($3)
Thank you for helping me...