About 2,890,000 results
Open links in new tab
  1. How to match, but not capture, part of a regex? - Stack Overflow

    How to match, but not capture, part of a regex? Asked 14 years, 10 months ago Modified 1 year, 7 months ago Viewed 317k times

  2. python .replace () regex - Stack Overflow

    I was pretty much assuming this was a throwaway script - both the regex approach and the string search approach have all sorts of inputs they'll fail on. For anything in production, I would want …

  3. Find index of cells containing my string - MathWorks

    Feb 25, 2011 · what to use if I want to find the exact string match 'bla'. My cell array has both 'bla' and 'blah' elements, but i want to pick out only 'bla'.

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

  5. matchFeatures - Find matching features - MATLAB - MathWorks

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

  6. Regular expression to stop at first match - Stack Overflow

    Dec 1, 2012 · to capture a match between start and the first occurrence of end. Notice how the subexpression with nested parentheses spells out a number of alternatives which between …

  7. Vlookup returns N/A despite of existing match - Stack Overflow

    May 25, 2016 · Vlookup returns N/A despite of existing match Asked 9 years, 2 months ago Modified 4 years ago Viewed 45k times

  8. strcmp - Compare strings - MATLAB - MathWorks

    This MATLAB function compares s1 and s2 and returns 1 (true) if the two are identical and 0 (false) otherwise.

  9. contains - Determine if pattern is in strings - MATLAB

    This MATLAB function returns 1 (true) if str contains the specified pattern, and returns 0 (false) otherwise.

  10. Can grep show only words that match search pattern?

    Oct 10, 2009 · Is there a way to make grep output "words" from files that match the search expression? If I want to find all the instances of, say, "th" in a number of files, I can do: grep &q...