Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7755197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:30:28+00:00 2026-06-01T12:30:28+00:00

I need to replace a string in certain documents. I have googled this code,

  • 0

I need to replace a string in certain documents. I have googled this code, but it unfortunately does not change anything. I am not sure about the syntax on the line bellow:

pulpdb = db.getSisterDB("pulp_database");
var cursor = pulpdb.repos.find();
while (cursor.hasNext()) {
  var x = cursor.next();
  x['source']['url'].replace('aaa', 'bbb'); // is this correct?
  db.foo.update({_id : x._id}, x);
}

I would like to add some debug prints to see what the value is, but I have no experience with MongoDB Shell. I just need to replace this:

{ "source": { "url": "http://aaa/xxx/yyy" } }

with

{ "source": { "url": "http://bbb/xxx/yyy" } }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T12:30:30+00:00Added an answer on June 1, 2026 at 12:30 pm

    It doesn’t correct generally: if you have string http://aaa/xxx/aaa (yyy equals to aaa) you’ll end up with http://bbb/xxx/bbb.
    But if you ok with this, code will work.

    To add debug info use print function:

    var cursor = db.test.find();
    while (cursor.hasNext()) {
      var x = cursor.next();
      print("Before: "+x['source']['url']);
      x['source']['url'] = x['source']['url'].replace('aaa', 'bbb');
      print("After: "+x['source']['url']);
      db.test.update({_id : x._id}, x);
    }
    

    (And by the way, if you want to print out objects, there is also printjson function)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need a regex to replace a string. <span class=\Translation\ lang=\ThisLanguage\> with this one:
I need to replace some string in a PHP code to make it look
I have thousands of SGML documents, some well-formed, some not so well-formed. I need
I need to replace multiple instances of a certain string (question mark) with strings
I have a string with certain pattern. I need to search for the pattern
I have this piece of code that originally uses the replace function(VBA) to replace
I need to replace a string like 123456 to ,123456 . I tried this.
I have this code which shifts the alphabet by a certain amount. The size
I need to replace many different sub-string in a string in the most efficient
I need to replace accented characters in a string with their unaccented counterparts and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.