Modify ↓
Opened 11 years ago
Closed 11 years ago
#9574 closed defect (wontfix)
Case-insensitive matching doesn't work with prefix match
Reported by: | naoliv | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Core validator | Version: | |
Keywords: | Cc: |
Description
Prefix match doesn't work when using a case-insensitive modifier. It doesn't work when name starts with a lower or upper-case "foo":
*[name ^= (?i)Foo] { throwWarning: tr("something"); }
(with quotes it's the same result)
Attachments (0)
Note:
See TracTickets
for help on using tickets.
(?i)
is a modifier for regular expressions. If you need a case-insensitive prefix match, please use a corresponding regular expression match.