MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

wie man mehrere Vorkommen eines Ausdrucks mongodb ersetzt

$reduce passt besser zu Ihrem Anwendungsfall:

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"
            ]
          }
        }
      }
    }
  }
])

MongoPlayground

BEARBEITEN: Zur Ausführung über die Bash-Shell:

Windows:

Erstellen Sie eine temp.js-Datei mit:

db.collection.aggregate(...).forEach(...)

Erstellen Sie eine temp.bat-Datei mit:

@echo off

path/to/mongo.exe --uri put_here_mongodb+srv temp.js

Führen Sie nun Folgendes aus:temp.bat

Unix:

Erstellen Sie eine temp.js-Datei mit:

db.collection.aggregate(...).forEach(...)

Erstellen Sie eine temp.bat-Datei mit:

#!/bin/bash

path/to/mongo --uri put_here_mongodb+srv temp.js

Erteilen Sie Ausführungsberechtigungen:chmod u+x temp.sh
Jetzt ausführen:./temp.sh