This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Recursively traverses all collections and objects/arrays contained within documents replacing every | |
| instance of 'find' with 'replace'. | |
| mongo <db_name> mongo_search_and_replace.js | |
| */ | |
| function escapeRegExp(str) { | |
| return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&"); | |
| } |