query-f6219288564a1c00d3a7264ef3b8144a

rq turtle/ttl

DACS items with non-breaking spaces

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?itemLabel WHERE {

  ?item wdt:P4663 [] .
  ?item rdfs:label ?itemLabel . FILTER(lang(?itemLabel) = "en") .
  filter(regex(?itemLabel, "[\\u202F\\u00A0]"))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected a1((" ")) f0[["regex(?itemLabel,'#91;\u202F\u00A0#93;')"]] f0 --> v1 f1[["?itemLabel = 'en'"]] f1 --> v1 v2 --"wdt:P4663"--> a1 v2 --"rdfs:label"--> v1