About 10,500,000 results
Open links in new tab
  1. regex - What are ^.* and .*$ in regular expressions? - Stack Overflow

    In case it is JS it indicates the start and end of the regex, like quotes for strings. stackoverflow.com/questions/15661969/…

  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. Python Regex replace - Stack Overflow

    Dec 23, 2013 · The question is very unclear, but I think it was really asking how to ignore commas in double quotes (that is, how to parse a line of a csv file) and the example given was just one …

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

  5. regex - Decimal or numeric values in regular expression validation ...

    I am trying to use a regular expression validation to check for only decimal values or numeric values. But user enters numeric value, it don't be first digit "0" How do I do that?

  6. regex - Negate characters in Regular Expression - Stack Overflow

    The caret inside of a character class [^ ] is the negation operator common to most regular expression implementations (Perl, .NET, Ruby, Javascript, etc). So I'd do it like this: [^\W\s\d] ^ …

  7. python .replace () regex - Stack Overflow

    I was pretty much assuming this was a throwaway script - both the regex approach and the string search approach have all sorts of inputs they'll fail on. For anything in production, I would want …

  8. regex - How is the AND/OR operator represented as in Regular ...

    I now try to match the string given by the user with the following, automatically created, regex expression: ^(part1|part2)$ This only returns answer 1 and 2 as correct while answer 3 would …

  9. regex - Regular Expression: Numeric range - Stack Overflow

    Sep 4, 2009 · How do you write a regular expression that matches a numeric range from 0 or 000 to 180 ?

  10. regex - Regular Expression with wildcards to match any character ...

    Jan 2, 1999 · Parentheses in regular expressions define groups, which is why you need to escape the parentheses to match the literal characters. So to modify the groups just remove all of the …