1

For example I have the files with the following names:

Apple (Fruit).txt
Palm (Tree).txt

How can I transform their names to

Apple (fruit).txt
Palm (tree).txt

with RegExp using Bulk Rename Utility?

Or without RegExp in case it is not needed to achieve my goal.

Toto
  • 19,304
YKKY
  • 267

1 Answers1

0

Asked this question at BRU support forum and received two answers:

Using RegEx v2 (tick v2 checkbox under RegEx (1))

Match: (\(.*?\))/g
Replace: \L$1

and using simple RegEx for BRU 3.4.2.0 and up (tick Simple checkbox under RegEx (1))

Match: %1(%2)
Replace: %1(\L%2)

Both methods work the same way and do the thing.

YKKY
  • 267