This will for example replace all hyphens in a filename with a single space:
find . -type f -name "*-*" -execdir prename \'s/-/ /g\' "{}"