Quote:
Originally Posted by Starson17
If the 'real' character in the field is a '|', then why does that work?
|
Because the comma in the query is changed to a '|' when searching authors. The fix for the bug is to change the comma to r'\|' if regexp mode is being used.
Quote:
Can you use upper case \W as the negated word character class or [A-Z]? My recollection is that caps are all forced to lower, but I'd like to verify that.
|
Query strings are not forced to lower in regexp mode. However, the regexp searches are caseless; ignore case is forced on.