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

  2. regex - What does ?= mean in a regular expression? - Stack …

    Oct 15, 2009 · What is the literal meaning of this regex that contains a lookahead? 52. Reference - What does this regex ...

  3. regex - What is the difference between .*? and .* regular …

    On greedy vs non-greedy. 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 …

  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 …

  5. xml - Regular expression \p {L} and \p {N} - Stack Overflow

    Feb 15, 2013 · This syntax is specific for modern Unicode regex implementation, which not all interpreters recognize. You can safely replace \p{L} by {a-zA-Z} (ascii notation) or {\w} …

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

    Fast regexen also need an "anchor" point, somewhere to start it's search somewhere in the string. These characters tell the Regex engine where to start looking and generally reduce the …

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

    Nov 30, 2011 · That looks like a typical password validation regex, except it has couple of errors. First, the .* at the beginning doesn't belong there. If any of those lookaheads doesn't succeed …

  8. RegEx for matching "A-Z, a-z, 0-9, _" and "." - Stack Overflow

    May 14, 2019 · regex in javascript, match only A-z and _? 6 Regular Expression to validate only A-Z, a-z, 0-9, space, period, hyphen - exclamation mark ! question mark ? quotes "

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

    Oct 24, 2011 · Now, by default, the RegEx e will find the third letter e in word There. There ^ However if you don't want the e which is immediately followed by r, then you can use RegEx …

  10. regex - Dollar sign in regular expression and new line character ...

    Dec 17, 2012 · So, the String before the $ would of course not include the newline, and that is why ([A-Za-z ]+\n)$ regex of yours failed, and ([A-Za-z ]+)$\n succeeded. In simple words, …