Hello. I have some files that contain both the artist and song title in one field (the title field) with space-forwardSlash-space in between (artist / song title). I'm wondering if there is a way to use an action to cut everything before the forward slash, and paste it into the artist field. If not a cut-and-paste then at least a copy?
From TITLE = "artist / title" to ARTIST = "artist", to TITLE = "title".
Copy TITLE to ARTIST, remove title part from ARTIST, remove artist part from TITLE.
Begin Actionsgroup lee321987
Action #1
Actiontype 5: Format tag field
Field: ARTIST
Formatstring: %TITLE%
Action #2
Actiontype 4: Replace with regular expression
Field: ARTIST
Regular expression: \s/\s.*
Replace matches with:
Action #3
Actiontype 4: Replace with regular expression
Field: TITLE
Regular expression: .*\s/\s
Replace matches with:
End Actionsgroup lee321987 (3 Actions)
DD.20080513.0824.CEST
Worked like a charm!
Thank you very much,
Will