mongodb - mongo db get collections starting with -


i have number of collections names like

app_users5473275725743 app_users5473275725746 app_users5473275725747 app_users5473275725748 

i want able find collections starting name 'app_users', while db.getcollectionnames returns collection names.

db.getcollectionnames().foreach(function(collname) {     if (collname.startswith("app_users")) {         print(collname);     } }); 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -