$reduce convient mieux à votre cas d'utilisation :
Pseudocode
value = url.split("_2000x")[0]
for (item: url.split("_2000x")[1:])
value += "_850x" + item
db.collection.aggregate([
{
$match: {
imageUrl: {
$regex: "_2000x"
},
brand: "Goat The Label"
}
},
{
$addFields: {
imageUrl: {
$reduce: {
input: {
$slice: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
1,
{
$size: {
$split: [
"$imageUrl",
"_2000x"
]
}
}
]
},
initialValue: {
$arrayElemAt: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
0
]
},
in: {
$concat: [
"$$value",
"_850x",
"$$this"
]
}
}
}
}
}
])
MODIF : Pour exécuter via le shell Bash :
Windows :
créez le fichier temp.js avec :
db.collection.aggregate(...).forEach(...)
créez le fichier temp.bat avec :
@echo off
path/to/mongo.exe --uri put_here_mongodb+srv temp.js
Exécutez maintenant :temp.bat
Unix :
créez le fichier temp.js avec :
db.collection.aggregate(...).forEach(...)
créez le fichier temp.bat avec :
#!/bin/bash
path/to/mongo --uri put_here_mongodb+srv temp.js
Donnez les permissions d'exécution :chmod u+x temp.sh
Exécutez maintenant :./temp.sh