रेगेक्स के लिए आप string.match का उपयोग कर सकते हैं
db.getCollectionNames().forEach(function(c) {
if(!c.match("^system.indexes")) {
db.getCollection(c).drop();
}
});
रेगेक्स के लिए आप string.match का उपयोग कर सकते हैं
db.getCollectionNames().forEach(function(c) {
if(!c.match("^system.indexes")) {
db.getCollection(c).drop();
}
});