1
0

regex-fixes.rst 295 B

12345678910
  1. regex-fixes
  2. -----------
  3. * Regular expressions match the ``^`` anchor at most once in repeated
  4. searches, at the start of the input. See policy :policy:`CMP0186`.
  5. * References to unmatched groups are allowed, they are replaced with empty
  6. strings.
  7. * Zero-length matches are always allowed.