expression B4 filename from, TITLE, ARTIST to ARTIST, TITLE

If you need help on how to use the program
Post Reply
ianarman
Posts: 1
Joined: 2013-05-19 18:07:42

expression B4 filename from, TITLE, ARTIST to ARTIST, TITLE

Post by ianarman »

Hi,

I'm looking to write an expression to change the file names, of songs from:

SONG TITLE, ARTIST

to

ARTIST, SONG TITLE

I'm not too sure how to write the expression.


Any help would be appreciated.
antp
Site Admin
Posts: 9639
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Hi,
So you just want to swap the texts around the comma?
Expression = (.+), (.+)\.([^\.]+)
Mask = $2, $1.$3
Post Reply