is there a script out there that would remove the second hypen "-" in the a filename and replace it with a single space?
Example:
2009-14 This is a word document 1-2.docx
2009-14 This is a word document 1 2.docx
is there a script out there that would remove the second hypen "-" in the a filename and replace it with a single space?
Example:
2009-14 This is a word document 1-2.docx
2009-14 This is a word document 1 2.docx
Old name: ([^-]-[^-])-(.*)
New name: \1 \2
Type: Regular expression