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
- What is MongoDB default port?
- How to empty an array in MongoDB?
- How to use watch in MongoDB?
- How to join two collections in MongoDB?
- How to sort MongoDB query results?
- How to use MongoDB queue?
- How to order query results in MongoDB?
- How to insert new document into MongoDB?
- How to update one document in MongoDB?
- How to use unwind in MongoDB?
See more codes...