Hi gbadesha,
You can do this now with the Dynamic Renamer:
The idea is simple, and the transformation is:
-$/___{title}/ -/^(.*)___(\d+).*$/BYL $1 - $2/
This is a two stage transformation, which:
- adds the title string to the end of the filename, after some unique marker symbols (I chose three underscores).
-$/___{title}/
- uses a regular expression to grab the pieces you want, and rearranges the output as per your requirements.
-/^(.*)___(\d+).*$/BYL $1 - $2/
Give it a shot!