I would like to do this action in bulk. I would like to swap 2 words/phrases around in my "Album" field. I have multiple songs listed as: Single; Album Name and would like the Album Name (which varies) to be listed first, followed by the word "Single". How Can I do that?
Try an action of the type "Replace with regular expression" for ALBUM
Search string: Single; (.*)
Replace string: $1 Single
It WORKS! Thank You!