0

假设我有一个如下所示的 RDF 图:

entity1 [
    title [ obect1.svg]       
    description [
         "This is sentence 1.  This is sentence 2." ]
         ] .
entity2 [
    title [ obect2.svg]       
    description [
         "This is sentence 3.  This is sentence 4." ]
].
entity3 [
    title [ obect3.svg]       
    description [
         "This is sentence 1.  This is sentence 4." ]
] .

我将如何编写查询来查找这是第 2 句?

4

1 回答 1

2

http://www.w3.org/TR/sparql11-query/#func-strings

函数REGEXCONTAINS.

于 2013-03-25T08:46:11.503 回答