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

    The key observation here is that when you have either "apple" or "banana", you must also have the trailing hyphen, but you don't want to match it. And when you're matching the blank string, …

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

    Oct 15, 2014 · =INDEX(B:B,MATCH(C2,A:A,0)) I should mention that MATCH checks the position at which the value can be found within A:A (given the 0, or FALSE, parameter, it looks only for …

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

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

    Dec 1, 2012 · you can match. a[^ab]*b i.e specify a character class which excludes the starting and ending delimiiters. In the more general case, you can painstakingly construct an …

  5. matchFeatures - Find matching features - MATLAB - MathWorks

    The function rejects a match when the distance between the features is greater than the value of MatchThreshold. Increase the value to return more matches. Increase the value to return more …

  6. Regex: ignore case sensitivity - Stack Overflow

    Mar 11, 2012 · /G[a-b].*/i string.match("G[a-b].*", "i") Check the documentation for your language/platform/tool to find how the matching modes are specified. If you want only part of …

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

    Jun 13, 2021 · This question asks for a switch/case or match/case equivalent in Python. It seems since Python 3.10 we can now use match/case statement. I cannot see and understand the …

  8. excel - Change the color of cells in one column when they don't …

    Nov 25, 2016 · Column I, Column AA both have the value of a the first month in years from 1318 till 1500 "Arabic Calender" but I want to check which of these values doesn't match and color …

  9. regex - Matching strings in PowerShell - Stack Overflow

    Jul 18, 2018 · I'm trying to match the file names against the recorded names in my CSV file. It generally works, but sometimes I get incorrect matches. Let's say I have two files that start …

  10. regex - Python extract pattern matches - Stack Overflow

    Mar 11, 2013 · import re s = #that big string # the parenthesis create a group with what was matched # and '\w' matches only alphanumeric charactes p = re.compile("name +(\w+) +is …

Refresh