SPARQL Query: How I get only a literal or string as result?

两盒软妹~` 提交于 2019-12-17 14:49:46

问题


Data:

<untitled-ontology-5:OperationName rdf:datatype="http://www.w3.org/2001/XMLSchema#string">
  Adhesive Curing
</untitled-ontology-5:OperationName>

SPARQL Query:

PREFIX rdf:<http://wwww.semanticweb.org/ontologies/2012/7/9/untitled-ontology-5#>
SELECT ?object
WHERE { ?subject  rdf:OperationName ?object .       
}

Result:

Adhesive Curing^^http://www.w3.org/2001/XMLSchema#string 

My Question:

The result of the SPARQL Query is not the result what I wanted. The right result should contain only the Literal/String without the URI-part. I'd like to create the following result:

Proper Result:

Adhesive Curing

回答1:


You need to use the STR() function to retrieve the lexical label of your literal:

Query:

SELECT (str(?object) as ?label) 
WHERE { ?subject rdf:OperationName ?object . }


来源:https://stackoverflow.com/questions/15724868/sparql-query-how-i-get-only-a-literal-or-string-as-result

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!