Following the MongoDB documentation, you can use the $in operator with a regular expression like wise db.inventory.find( { tags: { $in: [ /^be/, /^st/ ] } } )
db.inventory.find( { tags: { $in: [ /^be/, /^st/ ] } } )