I need to change the artist name format from this: Jackson, Michael to this: Michael Jackson. How do I do that ? Thanks
Create an action of the type "Replace with regular expression" for ARTIST
Enter as search pattern:
(.), (.)
Enter as replace string:
$2 $1
Check that you to not treat artists like Earth, Wind & Fire with this action.
THANKS !!!!