mongodbHow to do text search in MongoDB?
Text search in MongoDB can be done using the $text
operator. This operator allows for a full-text search of string content in a collection.
Example code
db.collection.find({$text: {$search: "text to search"}})
Output example
{ "_id" : ObjectId("5f3d7f9f8f9f9f9f9f9f9f9f"), "name" : "John Doe", "text" : "This is some text to search" }
Code explanation
db.collection.find()
: This is the MongoDB command to query a collection.$text
: This is the MongoDB operator used to perform a full-text search.$search
: This is the parameter used to specify the text to search for.
Helpful links
More of Mongodb
- How to bind IP addresses for MongoDB server?
- How to update many documents in MongoDB?
- How to use regex in MongoDB?
- How to specify a password for MongoDB Docker?
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to export an entire MongoDB database?
- How to use MongoDB HTTP interface?
- How to use unwind in MongoDB?
- How to install MongoDB on Mac?
See more codes...