About 2,530,000 results
Open links in new tab
  1. matchFeatures - Find matching features - MATLAB - MathWorks

    This MATLAB function returns indices of the matching features in the two input feature sets.

  2. OR condition in Regex - Stack Overflow

    Apr 13, 2013 · For example, ab|de would match either side of the expression. However, for something like your case you might want to use the ? quantifier, which will match the previous …

  3. Negative matching using grep (match lines that do not contain foo)

    How do I match all lines not matching a particular pattern using grep? I tried this: grep '[^foo]'

  4. Match case statement with multiple 'or' conditions in each case

    Dec 2, 2022 · Match case statement with multiple 'or' conditions in each case Asked 2 years, 11 months ago Modified 1 year, 2 months ago Viewed 37k times

  5. How do if statements differ from match/case statments in Python?

    Jun 13, 2021 · 28 PEP 622 provides an in-depth explanation for how the new match-case statements work, what the rationale is behind them, and provides examples where they're …

  6. If two cells match, return value from third - Stack Overflow

    Oct 15, 2014 · If two cells match, return value from third Asked 11 years, 1 month ago Modified 6 years, 9 months ago Viewed 632k times

  7. C# Regex Validation Rule using Regex.Match() - Stack Overflow

    C# Regex Validation Rule using Regex.Match () Asked 13 years, 10 months ago Modified 6 years, 11 months ago Viewed 167k times

  8. Why does Excel MATCH() not find a match? - Stack Overflow

    Nov 2, 2013 · Functions like MATCH, VLOOKUP and HLOOKUP need to match data type (number or text) whereas COUNTIF/SUMIF make no distinction. Are you using MATCH to find …

  9. regex - Which regular expression operator means 'Don't' match …

    May 8, 2011 · *, ?, + characters all mean match this character. Which character means 'don't' match this? Examples would help.

  10. JavaScript - Use variable in string match - Stack Overflow

    245 Although the match function doesn't accept string literals as regex patterns, you can use the constructor of the RegExp object and pass that to the String.match function: var re = new …