How To Remove Artist In Title

I apologize in advance, but I've spent 1 hour trying to figure this out. My Titles look like this:
"Ernest Tubb / I Saw The Light". How can I remove the / and what ever precedes it? Mighty fine software, by the way.

Slim

If you have a field:

  • "artist / title"
and want it to be only:
  • "title"
you may create an Action with the following properties:
  • Field: your_fieldname
  • Regular Expression: (.)/(.)
  • Replace matches with: $trim($2)

DD.20060624.0645

Thanks a bunch. I would have never figured that out.