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

  4. 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 …

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

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

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

    Oct 15, 2014 · The current formula almost works, but instead of returning the email address where A matched C, it returns the email address from the same row. …

  8. 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?

  9. Regex match entire words only - Stack Overflow

    ^ and $ match the beginning (respectively the end) of a line, therefore your example would match only if those are the only words in the line.

  10. regex - How do I match any character across multiple lines in a …

    Oct 2, 2008 · To clarify; I was originally using Eclipse to do a find and replace in multiple files. What I have discovered by the answers below is that my problem was the tool and not regex …