About 2,640,000 results
Open links in new tab
  1. If two cells match, return value from third - Stack Overflow

    Oct 15, 2014 · If two cells match, return value from third Asked 10 years, 8 months ago Modified 6 years, 4 months ago Viewed 625k times

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

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

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

  4. regex - Matching strings in PowerShell - Stack Overflow

    Jul 18, 2018 · Preface: PowerShell string- comparison operators are case-insensitive by default (unlike the string operators, which use the invariant culture, the regex operators seem to use …

  5. How does the regular expression " (aa)+\1" match "aaaaaa"?

    Aug 24, 2013 · Can anyone explain the process that a regular expression engine matches (aa)+\\1 against aaaaaa? I know there is a process called backtracking when you use + or * …

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

  7. How can I compare two lists in python and return matches

    The question was interpreted in two different ways. If the goal is to find all the elements that are common to both lists (regardless of where they appear in the list), that is a list intersection. …

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

    Jun 13, 2021 · 24 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 …

  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: ignore case sensitivity - Stack Overflow

    Mar 11, 2012 · How can I make the following regex ignore case sensitivity? It should match all the correct characters but ignore whether they are lower or uppercase. G[a-b].*