mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-22 15:38:02 +02:00
9 lines
177 B
SPARQL
9 lines
177 B
SPARQL
PREFIX ex: <http://example.com/#>
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
|
|
SELECT ?val
|
|
WHERE {
|
|
ex:foo rdf:value ?val .
|
|
FILTER regex(?val, "DeFghI", "i")
|
|
}
|