use lodash to find substring from array of strings

前端 未结 7 2501
清歌不尽
清歌不尽 2021-02-14 05:03

I\'m learning lodash. Is it possible to use lodash to find a substring in an array of strings?

    var myArray = [
    \'I like oranges and apples\',
    \'I hat         


        
相关标签:
7条回答
  • 2021-02-14 05:07

    I ran into this Question / Answer thread while trying to figure out how to match a substring against each String in an Array and REMOVE any array item that contains that substring.

    While the above answers put me on track, and while this doesn't specifically answer the original question, this thread DOES appear first in the google search when you are trying to figure out how to accomplish the above removal of an array item so I figured I would post an answer here.

    I ended up finding a way to use Lodash's _.remove function to remove matching array strings as follows:

            // The String (SubString) we want to match against array (for dropping purposes)
            var searchSubString = "whatever" 
    
            // Remove all array items that contain the text "whatever"
            _.remove(my_array, function(searchSubString) {
                  return n.indexOf(searchSubString) !== -1;
                });
    

    Basically indexOf is matching against the position of the substring within the string, if the substring is not found it will return -1, when indexOf returns a number other than -1 (the number is the SubString position in number of characters within the Array string).

    Lodash removes that Array item via array mutation and the newly modified array can be accessed by the same name.

    0 讨论(0)
  • 2021-02-14 05:07
    let str1 = 'la rivière et le lapin sont dans le près';
    let str2 = 'product of cooking class';
    let str3 = 'another sentence to /^[analyse]/i with weird!$" chars@';
    
    _.some(_.map(['rabbit','champs'], w => str1.includes(w)), Boolean), // false
    _.some(_.map(['cook'],            w => str2.includes(w)), Boolean), // true
    _.some(_.map(['analyse'],         w => str3.includes(w)), Boolean), // true
    
    0 讨论(0)
  • 2021-02-14 05:12
    _.some(myArray, function(str){
        return _.includes(str, 'orange')
    })
    
    0 讨论(0)
  • 2021-02-14 05:19

    The best way is to define a function to check the inclusion of a substring.

    var contains = _.curry(function (substring, source) {
        return source.indexOf(substring) !== -1;
    });
    

    I use _.curry here to get a curried function, which can be partially applied then.

    _.some(myArray, contains('item'));
    

    You can also find a substring in a joined string.

    contains('item', _.join(myArray))
    

    UPD:

    I have not noticed that lodash already has a function to find value in a collection.

    The function _.includes is quite the same to what I defined above. However, as everything in lodash, it uses the different order for arguments. In my example, I put a source as the latest argument for a curried function which makes my function useful for point-free style programming when lodash waits for the source as a first argument of the same function.

    Check the Brian Lonsdorf's talk on this matter https://www.youtube.com/watch?v=m3svKOdZijA

    Also take a chance to look into ramda. This library provides a better way for practical functional programming in JavaScript.

    0 讨论(0)
  • 2021-02-14 05:22

    You can easily construct an iteratee for some() using lodash's higher-order functions. For example:

    _.some(myArray, _.unary(_.partialRight(_.includes, 'orange')));
    

    The unary() function ensures that only one argument is passed to the callback. The partialRight() function is used to apply the 'orange' value as the second argument to includes(). The first argument is supplied with each iteration of some().

    However, this approach won't work if case sensitivity matters. For example, 'Orange' will return false. Here's how you can handle case sensitivity:

    _.some(myArray, _.method('match', /Orange/i));
    

    The method() function creates a function that will call the given method of the first argument passed to it. Here, we're matching against a case-insensitive regular expression.

    Or, if case-sensitivity doesn't matter and you simply prefer the method() approach, this works as well for ES2015:

    _.some(myArray, _.method('includes', 'orange'));
    
    0 讨论(0)
  • 2021-02-14 05:23

    Two quick ways to do it - neither uses lodash (sorry)

    var found = myArray.filter(function(el){
      return el.indexOf('oranges') > -1;
    }).length;
    
    if (found) { // oranges was found }
    

    or as I mentioned in the comment:

    var found = myArray.join(',').indexOf('oranges') > -1;
    if (found) { // oranges was found }
    
    0 讨论(0)
提交回复
热议问题