Changes between Initial Version and Version 2 of Ticket #360


Ignore:
Timestamp:
Aug 13, 2007, 6:25:36 PM (15 years ago)
Author:
John Maddock
Comment:

This occurs because by default POSIX regular expressions treat character ranges like [A-Z] as locale sensitive, and will match any character that collates within that range. For most locales the character "cm" do collate within that range, and hence they match. You can get more Perl-like behaviour by setting REG_NOCOLLATE as well as REG_EXTENDED when compiling the expression.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #360

    • Property Status assignedclosed
    • Property Resolution Noneinvalid
    • Property Component Noneregex
    • Property SeverityProblem