Change the name of a specific section to uppercase

You'll need a rename script.

function OnGetNewName(getNewNameData) {
    var arr = getNewNameData.newname_stem.match(/(.*_)(.*?)( by.*)/) || [];
    return arr.length == 4 ? arr[1] + arr[2].toUpperCase() + arr[3] : false
}

43760.orp (428 Bytes)


How to use Rename Presets from this forum