About 78 results
Open links in new tab
  1. 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.

  2. 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, 4 months ago Modified 1 month ago Viewed 39k times

  3. RegEx match open tags except XHTML self-contained tags

    The tag to match may end with a simple ">" symbol, or a possible XHTML closure, which makes use of the slash before it: (/>|>). The slash is, of course, escaped since it coincides with the regular …

  4. regex - How do I match any character across multiple lines in a regular ...

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

  5. Regular expression to match string starting with a specific word

    How do I create a regular expression to match a word at the beginning of a string? We are looking to match stop at the beginning of a string and anything can follow it. For example, the expression ...

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

  7. Regular expression to match characters at beginning of line only

    Mar 30, 2018 · Regex symbol to match at beginning of a line: ^ Add the string you're searching for (CTR) to the regex like this: ^CTR Example: regex That should be enough! However, if you need to get the …

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

  9. Regex: match everything but a specific pattern - Stack Overflow

    Nov 6, 2009 · I need a regular expression able to match everything but a string starting with a specific pattern (specifically index.php and what follows, like index.php?id=2342343).

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