About 10,200,000 results
Open links in new tab
  1. regex - Matching up to the first occurrence of a character with a ...

    Be aware that the first ^ in this answer gives the regex a completely different meaning: It makes the regular expression look only for matches starting from the beginning of the string.

  2. regex - Regular Expressions- Match Anything - Stack Overflow

    How do I make an expression to match absolutely anything (including whitespaces)? Example: Regex: I bought _____ sheep. Matches: I bought sheep. I bought a sheep. I bought five sheep. I tried usi...

  3. regex - Question marks in regular expressions - Stack Overflow

    Apr 7, 2011 · I'm reading the regular expressions reference and I'm thinking about ? and ?? characters. Could you explain me with some examples their usefulness? I don't understand them enough. thank …

  4. regex - How to use regular expressions in C - Stack Overflow

    Jul 5, 2009 · How do I use regular expressions in ANSI C? man regex.h does not provide that much help.

  5. Regex that accepts only numbers (0-9) and NO characters

    By putting ^ at the beginning of your regex and $ at the end, you ensure that no other characters are allowed before or after your regex. For example, the regex [0-9] matches the strings "9" as well as …

  6. regex - How to match "any character" in regular expression? - Stack ...

    Feb 24, 2023 · For reference, from regular-expressions.info/dot.html: "JavaScript and VBScript do not have an option to make the dot match line break characters. In those languages, you can use a …

  7. regex - Match linebreaks - \n or \r\n? - Stack Overflow

    While writing this answer, I had to match exclusively on linebreaks instead of using the s-flag (dotall - dot matches linebreaks). The sites usually used to test regular expressions behave diffe...

  8. RegEx: Grabbing values between quotation marks - Stack Overflow

    Oct 5, 2008 · The RegEx of accepted answer returns the values including their sourrounding quotation marks: "Foo Bar" and "Another Value" as matches. Here are RegEx which return only the values …

  9. regex - Regular Expressions: Is there an AND operator? - Stack Overflow

    In regex in general, ^ is negation only at the beginning of a character class. Unless CMake is doing something really funky (to the point where calling their pattern matching language "regex" could be …

  10. What is a non-capturing group in regular expressions?

    Aug 18, 2010 · What is also important there is that regex with non-capturing groups (?: is much faster than the same regex with capturing groups ' ('. So we should use non-capturing groups when we …