My goal is update tracktitleartistalbumartist metadata from the file name.
the demo of a file name is: 01. MyTitle - Artist1; Artist2.mp3
my regexp is: /^([0-9]+)(\.\s)(.*)(\s-\s)(.*)(\.[^\.]+)/gm
I have check it out in This Site
here is the screenshot from the site
there is 6 group in my regexp. I want to use var GetTrack = Group 1 var GetTitle = Group 3 var GetArtist = Group 5
How can I create such variable for each group no?