查询DBpedia以获取英文描述(使用SPARQL)

时间:2011-06-12 23:26:59

标签: rdf semantic-web sparql dbpedia

我正在使用此SPARQL查询查询dbpedia.org以获取有关Big Ben的说明:

select ?desc 
where {
<http://dbpedia.org/resource/Big_Ben> <http://www.w3.org/2000/01/rdf-schema#comment> ?desc
}

这将返回至少10种不同语言的描述列表。如何指定我只想要英文语言描述?

1 个答案:

答案 0 :(得分:20)

你需要知道的关键是str()和lang()拉开了值的文本和语言,所以你可以这样做:

select str(?desc) 
where {
  <http://dbpedia.org/resource/Big_Ben> <http://www.w3.org/2000/01/rdf-schema#comment> ?desc
  FILTER (langMatches(lang(?desc),"en"))
}