3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SPARQL文で言語指定して取得する方法

Posted at

DBpedia Japaneseの東京都のURIのラベルを日本語で取得したい場合は以下のSPARQL文

select * where {
http://ja.dbpedia.org/resource/東京都 http://www.w3.org/2000/01/rdf-schema#label ?tokyo_label .
filter(LANG(?tokyo_label) = 'ja')
}

英語の場合は'ja'を'en'に変更

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?