About 2,580,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. 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 …

  4. caching - HTTP If-None-Match vs. If-Match - Stack Overflow

    If-Match If-Unmodified-Since If-Range The last 2 seems irrevelent to my caching system (they seem to be used when resuming "big" downloads) but I haven't found if "If-Match" could be of …

  5. 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

  6. regexp - Match regular expression (case sensitive) - MATLAB

    This MATLAB function returns the starting index of each substring of str that matches the character patterns specified by the regular expression.

  7. Regex: match everything but a specific pattern - Stack Overflow

    Nov 6, 2009 · I need a regular expression able to match everything but a string starting with a specific pattern (specifically index.php and what follows, like index.php?id=2342343).

  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 - What do 'lazy' and 'greedy' mean in the context of regular ...

    Feb 20, 2010 · 480 means match longest possible string. means match shortest possible string. For example, the greedy matches in but the lazy matches .

  10. Match everything except for specified strings - Stack Overflow

    Mar 8, 2010 · I know that the following regex will match "red", "green", or "blue". red|green|blue Is there a straightforward way of making it match everything except several specified strings?