Eli Merriam <eli@xxxxxxxxxxxx> was heard to say:
> but, if i try to retrieve the same reference, but by searching for
> author name, it doesn't work:
>
> refdbc: getref :AU:=Merriam
> 0 reference(s) retrieved
>
This is because the '=' operator performs an exact match. Your query will find
only authors whose full name is 'Merriam'.
In order to find your article with the ID 1, try these queries:
getref :AU:="Merriam,Elisha P."
getref :AU:~Merriam
The second query performs a Unix regular expression match which will also
succeed because the string 'Merriam' is part of the string 'Merriam,Elisha P.'.
regards,
Markus
--
Markus Hoenicka
markus.hoenicka@xxxxxxx
(Spam-protected email: replace the quadrupeds with "mhoenicka")
http://www.mhoenicka.de
-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
|