query-be0ba6eae3f6f456fd20079fd8ac0e93
Papers with titles that are all UPPER CASE SELECT ?item ?title WHERE { ?item wdt:P31 wd:Q13442814; #scholarly article wdt:P1476 ?title. #title FILTER(REGEX(STR(?title), "^[\p{Lu}\p{M}\p{N}\p{P}\p{Z}]+$")) #non-lowercase } LIMIT 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Papers with titles that are all UPPER CASE
SELECT ?item ?title WHERE {
?item wdt:P31 wd:Q13442814; #scholarly article
wdt:P1476 ?title. #title
FILTER(REGEX(STR(?title), "^[\\p{Lu}\\p{M}\\p{N}\\p{P}\\p{Z}]+$")) #non-lowercase
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?title"):::projected
c3(["wd:Q13442814"]):::iri
f0[["regex(str(?title),'^#91;\p{Lu}\p{M}\p{N}\p{P}\p{Z}#93;+$')"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P1476"--> v1