About 50 results
Open links in new tab
  1. regex - What does ?= mean in a regular expression? - Stack Overflow

    Oct 15, 2009 · May I know what ?= means in a regular expression? For example, what is its significance in this expression: (?=.*\\d).

  2. regex - How .* (dot star) works? - Stack Overflow

    Oct 1, 2012 · In Regex, . refers to any character, be it a number, an aplhabet character, or any other special character. * means zero or more times.

  3. javascript - What is the need for caret (^) and dollar symbol ($) in ...

    Aug 16, 2020 · Javascript RegExp () allows you to specify a multi-line mode (m) which changes the behavior of ^ and $. ^ represents the start of the current line in multi-line mode, otherwise the start of …

  4. regex - Carets in Regular Expressions - Stack Overflow

    Jun 1, 2017 · Specifically when does ^ mean "match start" and when does it mean "not the following" in regular expressions? From the Wikipedia article and other references, I've concluded it means the …

  5. What is the meaning of + in a regex? - Stack Overflow

    Oct 3, 2010 · Now, when the regex engine tries to match against aaaaaaaab, the .* will again consume the entire string. However, since the engine will have reached the end of the string and the pattern is …

  6. regex - What is the difference between .*? and .* regular expressions ...

    Repetition in regex by default is greedy: they try to match as many reps as possible, and when this doesn't work and they have to backtrack, they try to match one fewer rep at a time, until a match of …

  7. regex - What are ^.* and .*$ in regular expressions? - Stack Overflow

    Second, while the regex insures that each of those three kinds of character is present, it doesn't say anything about the rest of the string. That may have been a deliberate choice, but people usually try …

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

    Jan 22, 2009 · 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 …

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

  10. Regex: ?: notation (Question mark and colon notation)

    Dec 8, 2018 · The regex compiles fine, and there are already JUnit tests that show how it works. It's just that I'm a bit confused about why the first question mark and colon are there.