Hi Randy, welcome.
Randy wrote:New to the forum and but I don't get the RegEx in order to accomplish this rename of files
09 MSOW SystemConfigRequirements[MOR000326-329].pdf
to
[MOR000326-329] 09 MSOW SystemConfigRequirements.pdf
Please enlighten me.
Test this with some test files:
FROM:
09 MSOW SystemConfigRequirements[MOR000326-329].pdf
TO:
[MOR000326-329] 09 MSOW SystemConfigRequirements.pdf
Search for "all signs" and group them for reuse, ==> "(.+)" == This first group can be accessed in the ouput put by "\1"
till an "[" and then for "all signs" till an "]" and group them too ==> "([.+])" == This second group can be accessed in the ouput put by "\2"
But since "[" and "]" are regex meta-chars we have to escape them by an "\" ===> "\[" and "\]" ===> "(\[.+\])"
Then reorder this two groups in the output and put an space in between ===> "\2~\1"
DO:
RegEx(1)
Search: (.+)(\[.+\])
Replac: \2 \1
HTH?

If yes: please help two others too.
Note:
If i had used "quotes", then don't use them for real, they are only for explanation.
If i had used ~ signs exchange them each by an space/blank.
See this older threads for an RegEx syntax overview:
=> Getting Started: http://www.bulkrenameutility.co.uk/forum/viewtopic.php?f=3&t=5
=> Go ahead: http://www.bulkrenameutility.co.uk/forum/viewtopic.php?f=3&t=27