Query for a field value that is a sub string of the search valueHow does MongoDB $text search works?How to query MongoDB with “like”?Update MongoDB field using value of another fieldQuery for documents where array size is greater than 1Checking if a field contains a stringWhat is the “__v” field in MongooseFind MongoDB records where array field is not emptyMongoose query where value is not nullStop Mongoose from creating _id property for sub-document array itemsFind document with array that contains a specific valuesearch a sub-field on mongoDB

Drawing lines to nearest point

What to do if SUS scores contradict qualitative feedback?

As programers say: Strive to be lazy

How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?

Does kinetic energy warp spacetime?

What is Plautus’s pun about frustum and frustrum?

Exception propagation: When should I catch exceptions?

What are the components of a legend (in the sense of a tale, not a figure legend)?

For the erase-remove idiom, why is the second parameter necessary which points to the end of the container?

Word for being out at night during curfew

How to select certain lines (n, n+4, n+8, n+12...) from the file?

Make all the squares explode

Extrude the faces of a cube symmetrically along XYZ

Extracting sublists that contain similar elements

Why does getw return -1 when trying to read a character?

Why doesn't Rocket Lab use a solid stage?

How can a Lich look like a human without magic?

Who was this character from the Tomb of Annihilation adventure before they became a monster?

How does noise-cancellation work in Mac laptops?

Is there a spell to protect inanimate objects?

How can Thor be worthy?

What's special about a Bunsen burner?

"Right on the tip of my tongue" meaning?

Why not just directly invest in the holdings of an ETF?



Query for a field value that is a sub string of the search value


How does MongoDB $text search works?How to query MongoDB with “like”?Update MongoDB field using value of another fieldQuery for documents where array size is greater than 1Checking if a field contains a stringWhat is the “__v” field in MongooseFind MongoDB records where array field is not emptyMongoose query where value is not nullStop Mongoose from creating _id property for sub-document array itemsFind document with array that contains a specific valuesearch a sub-field on mongoDB






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















If I have the following documents,



`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`


How does one display the following result



`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`


someone searches for the term cakemaster ?



I have tried the following,



`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`


But it doesn't work.










share|improve this question
























  • Have you created "text" index on subject field?

    – Anthony Winzlet
    Mar 23 at 12:08











  • Will edit the post, but yes I have

    – tomoshimi
    Mar 23 at 12:10











  • For me the above code is working fine

    – Anthony Winzlet
    Mar 23 at 12:16











  • sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

    – tomoshimi
    Mar 23 at 12:17











  • stackoverflow.com/questions/53652282/…

    – Anthony Winzlet
    Mar 23 at 12:20

















0















If I have the following documents,



`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`


How does one display the following result



`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`


someone searches for the term cakemaster ?



I have tried the following,



`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`


But it doesn't work.










share|improve this question
























  • Have you created "text" index on subject field?

    – Anthony Winzlet
    Mar 23 at 12:08











  • Will edit the post, but yes I have

    – tomoshimi
    Mar 23 at 12:10











  • For me the above code is working fine

    – Anthony Winzlet
    Mar 23 at 12:16











  • sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

    – tomoshimi
    Mar 23 at 12:17











  • stackoverflow.com/questions/53652282/…

    – Anthony Winzlet
    Mar 23 at 12:20













0












0








0








If I have the following documents,



`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`


How does one display the following result



`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`


someone searches for the term cakemaster ?



I have tried the following,



`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`


But it doesn't work.










share|improve this question
















If I have the following documents,



`
db.articles.insert(
[
_id: 1, subject: "coffee", author: "xyz", views: 50 ,
_id: 2, subject: "Coffee Shopping", author: "efg", views: 5 ,
_id: 3, subject: "Baking a cake", author: "abc", views: 90 ,
_id: 4, subject: "baking", author: "xyz", views: 100 ,
_id: 5, subject: "Café Con Leche", author: "abc", views: 200 ,
_id: 6, subject: "Сырники", author: "jkl", views: 80 ,
_id: 7, subject: "coffee and cream", author: "efg", views: 10 ,
_id: 8, subject: "Cafe con Leche", author: "xyz", views: 10
]
)
`


How does one display the following result



`
_id: 3, subject: "Baking a cake", author: "abc", views: 90
`


someone searches for the term cakemaster ?



I have tried the following,



`
const regex = new RegExp(escapeRegex(req.query.search), 'gi');
db.articles.createIndex( subject: "text" )
db.articles.find($text:$search: "cakes")
`


But it doesn't work.







mongodb mongoose






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 23 at 12:17







tomoshimi

















asked Mar 23 at 12:05









tomoshimitomoshimi

84




84












  • Have you created "text" index on subject field?

    – Anthony Winzlet
    Mar 23 at 12:08











  • Will edit the post, but yes I have

    – tomoshimi
    Mar 23 at 12:10











  • For me the above code is working fine

    – Anthony Winzlet
    Mar 23 at 12:16











  • sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

    – tomoshimi
    Mar 23 at 12:17











  • stackoverflow.com/questions/53652282/…

    – Anthony Winzlet
    Mar 23 at 12:20

















  • Have you created "text" index on subject field?

    – Anthony Winzlet
    Mar 23 at 12:08











  • Will edit the post, but yes I have

    – tomoshimi
    Mar 23 at 12:10











  • For me the above code is working fine

    – Anthony Winzlet
    Mar 23 at 12:16











  • sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

    – tomoshimi
    Mar 23 at 12:17











  • stackoverflow.com/questions/53652282/…

    – Anthony Winzlet
    Mar 23 at 12:20
















Have you created "text" index on subject field?

– Anthony Winzlet
Mar 23 at 12:08





Have you created "text" index on subject field?

– Anthony Winzlet
Mar 23 at 12:08













Will edit the post, but yes I have

– tomoshimi
Mar 23 at 12:10





Will edit the post, but yes I have

– tomoshimi
Mar 23 at 12:10













For me the above code is working fine

– Anthony Winzlet
Mar 23 at 12:16





For me the above code is working fine

– Anthony Winzlet
Mar 23 at 12:16













sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

– tomoshimi
Mar 23 at 12:17





sorry, I had the term wrong, instead of 'cakes' I wanted 'cakemaster'. Edited the post as well

– tomoshimi
Mar 23 at 12:17













stackoverflow.com/questions/53652282/…

– Anthony Winzlet
Mar 23 at 12:20





stackoverflow.com/questions/53652282/…

– Anthony Winzlet
Mar 23 at 12:20












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313553%2fquery-for-a-field-value-that-is-a-sub-string-of-the-search-value%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313553%2fquery-for-a-field-value-that-is-a-sub-string-of-the-search-value%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript