I'm struggling to find an elegant action/regular expression solution to extracting certain text from the title tag and reformatting my already existing album tag. Here is the scenario:
100s of songs in this format - tags
Title: (Name of Riddim) Song Title Here
Artist: Groovy Greg
Album: 2020C - GRV
What I'd like to achieve
Title: Song Title Here
Artist: Groovg Greg
Album: Name of Riddim - 2020C - GRV
So dismantling the title tag to extract "(Name of Riddim)" then removing the brackets and appending "Name of Riddim" to the album tag as shown above.
I tried adding ^ to the start of the express to see if I could get it to stop after the first set of brackets. This method does work well, providing I use my other action to remove "(Soca 2020)" first. So this is still good however just trying to further optimize my workflow.