About 75 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 expression …

  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 3 years, 1 month ago Modified 1 year, 5 months ago Viewed 38k times

  4. 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]'

  5. How to match a substring in a string, ignoring case

    How to match a substring in a string, ignoring case Asked 14 years, 6 months ago Modified 2 years, 9 months ago Viewed 289k times

  6. SQL Error: ORA-01861: literal does not match format string 01861

    8 ORA-01861: literal does not match format string This happens because you have tried to enter a literal with a format string, but the length of the format string was not the same length as the literal. You can …

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

  8. Python: match/case by type of value - Stack Overflow

    May 18, 2022 · You can match directly against the type of v, but you need a value pattern to refer to the types to match, as a "dotless" name is a capture pattern that matches any value.

  9. 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 the position or …

  10. regex - Which regular expression operator means 'Don't' match this ...

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