db.resolution.updateMany(
{ attach_pdf: { $regex: /.*564\..*/ } },
[{
$set: { attach_pdf: {
$replaceOne: { input: "$attach_pdf", find: "564. Luxacion de muñeca.docx", replacement: "564. Luxacion de muneca.docx" }
}}
}]
)
db.resolution.updateMany(
{ attach_pdf: { $regex: /.*564\..*/ } },
[{
$set: { attach_pdf: {
$replaceOne: { input: "$attach_pdf", find: "564. Luxacion de muñeca.docx", replacement: "564. Luxacion de muneca.docx" }
}}
}]
)