1

I can't find any documentation at all about renaming files using the regex functions in BFR.

I know I can use other apps, but I want to use this one. http://www.publicspace.net/windows/BetterFileRename/

I simply want to swap some numbers at the tail of the filename with the text at the head...

like

/(.*)-(\d{6})/

and

$2 $1

Are there some docs or examples out there?

Thanks

3
  • 1
    Googled that site, products use strange, non standard syntax and definitions for regular expressions. IAC, try /2 and /1 in place of the backreferences you used.
    – SΛLVΘ
    Commented Nov 25, 2015 at 22:30
  • Thanks. Will try. Apparently one also skips the surrounding // as well.
    – dwilbank
    Commented Nov 26, 2015 at 15:43
  • Yes, those aren't part of regex
    – SΛLVΘ
    Commented Nov 26, 2015 at 15:55

1 Answer 1

0

it's \1, \2, etc

The more recent versions of BFR actually show the column names as \1 and \2 to make things easier

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .