I've got a bunch of files name in the format "words_separated_by_underscores_without_uppercases" and I'd want to rename them to the format "Words Separated By Spaces With Uppercases". I'm currently trying to do it with an app named "ReNamer", that takes regex as an input for the before after renaming parameters.
Replacing underscores with spaces is easy but I've been unable to find a way to replace the character next to the underscore with its capitalized counterpart.
How could this be done? Assuming it's possible to.
It's probably best to first replace all underscores with a space, and then add a "Case" Rule with the option "Capitalize Every Word":