query-c333a10913073c59f757bf4ce8b8bc4f
Site officiels ayant une certaine expression dans l'URL. La fonction regex \ habituelle doit être doublée (\)
SELECT DISTINCT ?item ?sitelink
WHERE
{
?item wdt:P856 ?sitelink .
FILTER ( REGEX(str(?sitelink), "^.EXPRESSION.") )
}
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#Site officiels ayant une certaine expression dans l'URL. La fonction regex \ habituelle doit être doublée (\\)
SELECT DISTINCT ?item ?sitelink
WHERE
{
?item wdt:P856 ?sitelink .
FILTER ( REGEX(str(?sitelink), "^.*EXPRESSION.*") )
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink"):::projected
f0[["regex(str(?sitelink),'^.*EXPRESSION.*')"]]
f0 --> v1
v2 --"wdt:P856"--> v1