You are not logged in.
Pages: 1
Hi
Is it possible to have all the text in lower case except the first letter and the content between the two brackets?
For example:
if I download named:
18 - Crack A Bottle (feat Dr. Dre & 50 Cent)
I want
18 - Crack a bottle (feat Dr. Dre & 50 Cent)
Another example
01 - Public Service Announcement (Feat Jeff Bass)
to
01 - Public service announcement (Feat Jeff Bass)
In practice, the content in parentheses doesn't have to be renamed and the song title has to be all lowercase except the first letter
Thanks
Offline
Your particular examples can be accomplished with the following renaming rules:
1) Regular Expressions: Replace expression "\A(\d+\s+-\s+)([^\(]+)" with "$1\L$2" (skip extension)
2) Regular Expressions: Replace expression "\A(\d+\s+-\s+)([^\(]+)" with "$1\u$2" (skip extension)
Here is the documentation for the Regular Expressions:
http://www.den4b.com/wiki/ReNamer:Regular_Expressions
Here is a quick demo:
Offline
You are fantastic! Happy New Year to you and to the whole forum
Offline
Pages: 1