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 work with time series data in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to use watch in MongoDB?
- How to use eq in MongoDB?
- How to empty an array in MongoDB?
- How to check the version of MongoDB?
- How to update many documents in MongoDB?
- How to use triggers in MongoDB?
- How to use unwind in MongoDB?
See more codes...