you can learn all about regular expressions at
http://www.regular-expressions.info
you search a particular field -- say, authors or title -- by starting with the name of the field, followed by ":" as in our previous case, search title for "raw", we used "title:" next comes the search term, enclosed in quotes. title:"raw" will search for "raw", title:"
~raw" wil search for the REGEX of "raw". Using the regex symbol "\b" we match word boundaries. So to find an author that includes the name "John" we search for
Code:
authors:"~\bJohn\b"
which will NOT match Johnathan, though
would match Johnathan.
meta-field:"meta-value" -- search for anything that includes "meta-value" matching within (limited to) type (column) "meta-field".
meta-field:"
=meta-value" -- search for the exact value "meta-value" limited to type (column) "meta-field"
meta-field:"
~meta-value" -- search for the regex "meta-value" that matches within (limited to) type (column) "meta-field"
AND/OR/NOT/AND NOT/OR NOT can be used to search for multiple things at the same time, they are your standard
boolean search operators.