using the examples above, i used this to replace part of the file name... this was used to rename various data files in a directory, due to a vendor changing names.
find . -name 'o3_cloudmed_*.*' -type f -exec bash -c 'mv "$1" "${1/cloudmed/revint}"' -- {} \;