我正在尝试为GSA搜索创建一个查询:
该查询假设会带来所有的结果,其中排除了meta标记中的一些文本,例如:
inmeta:Education -first and -second and -courses...但没那么走运。有人知道正确的语法是什么吗?
发布于 2013-02-14 21:32:08
我以前使用过等于条件,查询看起来像这样-
(inmeta:education=first OR inmeta:education=second)如果您的结果不能包含元标记Education不等于值first的所有页面,则使用-
inmeta:Education-first对于多个值,可以使用OR条件-
(inmeta:Education-first OR inmeta:Education-second)你可以在这里找到更多信息- https://developers.google.com/search-appliance/documentation/46/xml_reference#request_query_terms
希望这对你有帮助。
https://stackoverflow.com/questions/14050034
复制相似问题