最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Using Lodash to find a partial string in any property value of an object - Stack Overflow

programmeradmin1浏览0评论

I want to use Lodash to return true when an object contains in any of its values, a match for a partial string. I've tried this with _.includes as follows.

const ob = {first: "Fred", last: "Flintstone",}
const search = "stone";
const result = _.includes(ob, search)
console.log(result); // false

I've also tried this using a regular expression instead of a string for the search term.

const search = /stone/gi;

Both times result returns false. I want result to return true. How can I do this in Lodash?

I want to use Lodash to return true when an object contains in any of its values, a match for a partial string. I've tried this with _.includes as follows.

const ob = {first: "Fred", last: "Flintstone",}
const search = "stone";
const result = _.includes(ob, search)
console.log(result); // false

I've also tried this using a regular expression instead of a string for the search term.

const search = /stone/gi;

Both times result returns false. I want result to return true. How can I do this in Lodash?

Share Improve this question edited Nov 29, 2019 at 5:51 Let Me Tink About It asked May 29, 2019 at 14:46 Let Me Tink About ItLet Me Tink About It 16.2k21 gold badges108 silver badges217 bronze badges 5
  • Lodash is overkill for a simple problem. – Kobe Commented May 29, 2019 at 14:48
  • 1 You can do result = Object.values(ob).some(str => _.includes(str, search)); – user5734311 Commented May 29, 2019 at 14:50
  • @ChrisG my thought exactly – Kobe Commented May 29, 2019 at 14:50
  • 1 @Kobe: You said Lodash is overkill. But you like the answer using Lodash?
发布评论

评论列表(0)

  1. 暂无评论