Quote:
Originally Posted by chaley
Two issues:
- literal backslashes must be escaped with a backslash.
- the comma is treated strangely, because the 'real' character in the field is a '|'. This is a bug.
The following works today.
Code:
authors:"~^\\w*\\, \\w"
|
If the 'real' character in the field is a '|', then why does that work?
Quote:
I will fix the strange comma problem. After the fix is released, then the following will work
Code:
authors:"~^\\w*, \\w"
|
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.