Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: rename files question (Read 2192 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

rename files question

i was wondering how u can use underscore if the artist/title contains more words, for example:

if the song is Alice Cooper - Poison, %artist%_-_%title% gives Alice Cooper_-_Poison, but i want Alice_Cooper_-_Poison.

any suggestions? thx:)

rename files question

Reply #1
$replace(%artist% - %title%,' ','_')
A riddle is a short sword attached to the next 2000 years.

 

rename files question

Reply #2
The single quotes around the space and the underscore are unnecessary.