data-1.ttl

来自「Jena推理机」· TTL 代码 · 共 37 行

TTL
37
字号
@prefix xsd:        <http://www.w3.org/2001/XMLSchema#> .
@prefix :           <http://example/> .

##    1.  (Lowest) no value assigned to the variable 
##         or expression in this solution.
##    2. Blank nodes
##    3. IRIs
##    4. RDF literals
##    5. A plain literal before an RDF literal
##       with type xsd:string of  the same lexical form.

[]  :p <http://example/iri1> ;
    :i 3 .

[]  :p <http://example/iri2> ;
    :i 4 .

[]  :p 99 ;
    :i 5 .

[]  :p 9999 ;
    :i 6 .

[]  :p "abc" ;
    :i 7 .

[]  :p "abc"^^xsd:string ;
    :i 8 .

# Out of order because Jena will return in same
# order for small numbers "[] :i ..."

[]  :i 1 .

[]  :p [] ;
    :i 2 .

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?