Bulk Rename Utility

Bulk file renaming software for Windows. Free for personal use.

Custom function to change case to title case

Using custom javascript functions requires the paid version of the software to work.

function toTitleCase(str) {
  return str.replace(/\w\S*/g, function (txt) {
    return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
  });
}
newName = toTitleCase(name);

source: BRU Forums

.==test==

hello how are you

Related